We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae3cfba commit 1689063Copy full SHA for 1689063
asgiref/sync.py
@@ -37,7 +37,7 @@ def markcoroutinefunction(func: Any) -> Any:
37
if hasattr(inspect, "markcoroutinefunction"):
38
return inspect.markcoroutinefunction(func)
39
else:
40
- func._is_coroutine = asyncio.coroutines._is_coroutine
+ func._is_coroutine = asyncio.coroutines._is_coroutine # type: ignore
41
return func
42
43
0 commit comments