We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02a4236 commit b31f5f0Copy full SHA for b31f5f0
1 file changed
taskiq_dependencies/utils.py
@@ -2,10 +2,10 @@
2
import sys
3
from typing import Any, AsyncContextManager, ContextManager, Optional
4
5
-if sys.version_info < (3, 10):
6
- from typing_extensions import TypeGuard # noqa: WPS433
7
-else:
+if sys.version_info >= (3, 10):
8
from typing import TypeGuard # noqa: WPS433
+else:
+ from typing_extensions import TypeGuard # noqa: WPS433
9
10
11
class ParamInfo:
0 commit comments