diff options
Diffstat (limited to 'yt_dlp/compat/asyncio/tasks.py')
-rw-r--r-- | yt_dlp/compat/asyncio/tasks.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/yt_dlp/compat/asyncio/tasks.py b/yt_dlp/compat/asyncio/tasks.py index cb31e52fa..9d98fdfeb 100644 --- a/yt_dlp/compat/asyncio/tasks.py +++ b/yt_dlp/compat/asyncio/tasks.py @@ -2,6 +2,11 @@ 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: |