Skip to content

Commit 0e56d88

Browse files
Update __init__.py
1 parent 58cf7f0 commit 0e56d88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

async_lru/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ async def __call__(self, /, *fn_args: _P.args, **fn_kwargs: _P.kwargs) -> _R:
211211
exc = cache_item.fut._exception
212212

213213
if exc is None:
214-
self._cache_hit(key) # type: ignore[unreachable] # github.com/python/typeshed/pull/10502
214+
self._cache_hit(key)
215215
return cache_item.fut.result()
216216
else:
217217
# exception here

0 commit comments

Comments
 (0)