Skip to content

Commit df08c29

Browse files
ignore false positive (microsoft/pyright#11025)
1 parent 1c3d743 commit df08c29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

asyncstdlib/functools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ async def data(self):
257257
if iscoroutinefunction(type_or_getter):
258258
return CachedProperty(type_or_getter)
259259
elif isinstance(type_or_getter, type) and issubclass(
260-
type_or_getter, AsyncContextManager
260+
type_or_getter, AsyncContextManager # pyright: ignore[reportGeneralTypeIssues]
261261
):
262262

263263
def decorator(

0 commit comments

Comments
 (0)