(self, conn: Redis[bytes])
| 15 | |
| 16 | class RedisCache(BaseCache): |
| 17 | def __init__(self, conn: Redis[bytes]) -> None: |
| 18 | self.conn = conn |
| 19 | |
| 20 | def get(self, key: str) -> bytes | None: |
| 21 | return self.conn.get(key) |
nothing calls this directly
no outgoing calls
no test coverage detected