aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/compat/asyncio/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/compat/asyncio/tasks.py')
-rw-r--r--yt_dlp/compat/asyncio/tasks.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/yt_dlp/compat/asyncio/tasks.py b/yt_dlp/compat/asyncio/tasks.py
deleted file mode 100644
index 9d98fdfeb..000000000
--- a/yt_dlp/compat/asyncio/tasks.py
+++ /dev/null
@@ -1,13 +0,0 @@
-# flake8: noqa: F405
-
-from asyncio.tasks import * # noqa: F403
-
-from ..compat_utils import passthrough_module
-
-passthrough_module(__name__, 'asyncio.tasks')
-del passthrough_module
-
-try: # >= 3.7
- all_tasks
-except NameError:
- all_tasks = Task.all_tasks