]> jfr.im git - yt-dlp.git/blob - yt_dlp/compat/urllib/__init__.py
[compat] Ensure submodules are imported correctly
[yt-dlp.git] / yt_dlp / compat / urllib / __init__.py
1 # flake8: noqa: F405
2 from urllib import * # noqa: F403
3
4 del request
5 from . import request # noqa: F401
6
7 from ..compat_utils import passthrough_module
8
9 passthrough_module(__name__, 'urllib')
10 del passthrough_module