client.pyi 121 B

12345678
  1. from typing import TypeVar
  2. from redis import Redis
  3. T = TypeVar("T", str, bytes)
  4. class RedisCluster(Redis[T]):
  5. ...