diff options
Diffstat (limited to 'yt_dlp/compat/urllib/__init__.py')
-rw-r--r-- | yt_dlp/compat/urllib/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/yt_dlp/compat/urllib/__init__.py b/yt_dlp/compat/urllib/__init__.py new file mode 100644 index 000000000..6b6b8e103 --- /dev/null +++ b/yt_dlp/compat/urllib/__init__.py @@ -0,0 +1,7 @@ +# flake8: noqa: F405 +from urllib import * # noqa: F403 + +from ..compat_utils import passthrough_module + +passthrough_module(__name__, 'urllib') +del passthrough_module |