Skip to content

Commit b31f5f0

Browse files
committed
Change order
1 parent 02a4236 commit b31f5f0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

taskiq_dependencies/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
import sys
33
from typing import Any, AsyncContextManager, ContextManager, Optional
44

5-
if sys.version_info < (3, 10):
6-
from typing_extensions import TypeGuard # noqa: WPS433
7-
else:
5+
if sys.version_info >= (3, 10):
86
from typing import TypeGuard # noqa: WPS433
7+
else:
8+
from typing_extensions import TypeGuard # noqa: WPS433
99

1010

1111
class ParamInfo:

0 commit comments

Comments
 (0)