diff options
Diffstat (limited to 'yt_dlp/compat/urllib/__init__.py')
-rw-r--r-- | yt_dlp/compat/urllib/__init__.py | 10 |
1 files changed, 10 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..b27cc6133 --- /dev/null +++ b/yt_dlp/compat/urllib/__init__.py @@ -0,0 +1,10 @@ +# flake8: noqa: F405 +from urllib import * # noqa: F403 + +del request +from . import request # noqa: F401 + +from ..compat_utils import passthrough_module + +passthrough_module(__name__, 'urllib') +del passthrough_module |