mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-23 16:30:33 +01:00
[compat] Split into sub-modules (#2173)
Authored by: fstirlitz, pukkandan
This commit is contained in:
8
yt_dlp/compat/asyncio/tasks.py
Normal file
8
yt_dlp/compat/asyncio/tasks.py
Normal file
@@ -0,0 +1,8 @@
|
||||
# flake8: noqa: F405
|
||||
|
||||
from asyncio.tasks import * # noqa: F403
|
||||
|
||||
try: # >= 3.7
|
||||
all_tasks
|
||||
except NameError:
|
||||
all_tasks = Task.all_tasks
|
||||
Reference in New Issue
Block a user