Skip to content

Commit

Permalink
remove type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
aquamatthias committed Sep 25, 2024
1 parent c6f80d6 commit cbf12ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ async def eventually(

@fixture
async def redis() -> AsyncIterator[Redis]:
backoff = ExponentialBackoff() # type: ignore
backoff = ExponentialBackoff()
redis = Redis(host="localhost", port=6379, db=0, decode_responses=True, retry=Retry(backoff, 10))
await redis.flushdb() # wipe redis
yield redis
Expand Down

0 comments on commit cbf12ae

Please sign in to comment.