diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-24 21:58:18 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-26 05:43:20 +0530 |
commit | 9196cbfe8bb7a6eb46037735b76f21963dfdc61a (patch) | |
tree | 050c5df59f73c0dc15e99ae6388595ea6e00986f /yt_dlp/compat/asyncio/__init__.py | |
parent | 9cd080508db2daf625994f9aef29790f4bca7996 (diff) | |
download | hypervideo-pre-9196cbfe8bb7a6eb46037735b76f21963dfdc61a.tar.lz hypervideo-pre-9196cbfe8bb7a6eb46037735b76f21963dfdc61a.tar.xz hypervideo-pre-9196cbfe8bb7a6eb46037735b76f21963dfdc61a.zip |
[compat] Ensure submodules are correctly wrapped
Diffstat (limited to 'yt_dlp/compat/asyncio/__init__.py')
-rw-r--r-- | yt_dlp/compat/asyncio/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/yt_dlp/compat/asyncio/__init__.py b/yt_dlp/compat/asyncio/__init__.py index 0e8c6cad3..21b494499 100644 --- a/yt_dlp/compat/asyncio/__init__.py +++ b/yt_dlp/compat/asyncio/__init__.py @@ -3,6 +3,10 @@ from asyncio import * # noqa: F403 from . import tasks # noqa: F401 +from ..compat_utils import passthrough_module + +passthrough_module(__name__, 'asyncio') +del passthrough_module try: run # >= 3.7 |