Skip to content

Commit

Permalink
ignore impl type lack
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfischer2781 committed Aug 1, 2024
1 parent 47a18ca commit e763db4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion asyncstdlib/_lrucache.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ def __get__(
"""Descriptor ``__get__`` for caches to bind them on lookup"""
if instance is None:
return self
return LRUAsyncBoundCallable(self, instance)
return LRUAsyncBoundCallable(
self, instance
) # pyright: ignore[reportUnknownVariableType]

#: Get the result of ``await __wrapped__(...)`` from the cache or evaluation
__call__: AC
Expand Down

0 comments on commit e763db4

Please sign in to comment.