Skip to content

Commit ed83f74

Browse files
committed
fix manual ruff issues
1 parent 6dc8cc9 commit ed83f74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

taskgroup/tasks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919

2020
if sys.version_info >= (3, 12):
2121
_TaskCompatibleCoro: TypeAlias = collections.abc.Coroutine[Any, Any, _T_co]
22-
elif sys.version_info >= (3, 9):
22+
else:
2323
_TaskCompatibleCoro: TypeAlias = (
24-
collectiona.abc.Generator[_TaskYieldType, None, _T_co]
25-
| Coroutine[Any, Any, _T_co]
24+
collections.abc.Generator[_TaskYieldType, None, _T_co]
25+
| collections.abc.Coroutine[Any, Any, _T_co]
2626
)
2727

2828

0 commit comments

Comments
 (0)