Coverage for archdocs/features/redis/const.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.15.3, created at 2026-08-03 00:00 +0000

1import dataclasses 

2import typing 

3 

4 

5@typing.final 

6@dataclasses.dataclass(slots=True, kw_only=True, frozen=True) 

7class RedisFeatures: 

8 connection_type: str | None 

9 cluster_or_sentinel: bool 

10 async_used: bool 

11 retry_used: bool