Skip to content

Commit

Permalink
fixed Redis typing mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJecksMan committed Apr 17, 2024
1 parent cd7dd54 commit 80b2476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redsession/backend/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class RedisBackend(BaseAsyncBackend):
redis (:obj:`redis.asyncio.Redis`): Async Redis client.
"""

def __init__(self, redis: Redis[Any]) -> None:
def __init__(self, redis: Redis[Any]) -> None: # type: ignore
self.redis = redis

async def get(self, key: str) -> dict[str, Any] | None:
Expand Down

0 comments on commit 80b2476

Please sign in to comment.