We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
asyncio
1 parent 8e41413 commit 722dfddCopy full SHA for 722dfdd
1 file changed
sqlalchemy_database/_abc_async_database.py
@@ -1,12 +1,11 @@
1
import abc
2
+import asyncio
3
import functools
-
4
from typing import TypeVar, Callable
5
6
try:
7
from asyncio import to_thread # python 3.9+
8
except ImportError:
9
- import asyncio
10
import contextvars
11
from typing_extensions import ParamSpec
12
0 commit comments