Skip to content

Commit e763db4

Browse files
ignore impl type lack
1 parent 47a18ca commit e763db4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

asyncstdlib/_lrucache.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ def __get__(
8181
"""Descriptor ``__get__`` for caches to bind them on lookup"""
8282
if instance is None:
8383
return self
84-
return LRUAsyncBoundCallable(self, instance)
84+
return LRUAsyncBoundCallable(
85+
self, instance
86+
) # pyright: ignore[reportUnknownVariableType]
8587

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

0 commit comments

Comments
 (0)