Skip to content

Commit 4b88e20

Browse files
do not rely on asnycio
1 parent 7f683ea commit 4b88e20

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

asyncstdlib/asynctools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from asyncio import iscoroutinefunction
21
from functools import wraps
2+
from inspect import iscoroutinefunction
33
from typing import (
44
Union,
55
AsyncContextManager,

asyncstdlib/functools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from asyncio import iscoroutinefunction
1+
from inspect import iscoroutinefunction
22
from typing import (
33
Callable,
44
Awaitable,

0 commit comments

Comments
 (0)