aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/compat/urllib/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/compat/urllib/__init__.py')
-rw-r--r--yt_dlp/compat/urllib/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/yt_dlp/compat/urllib/__init__.py b/yt_dlp/compat/urllib/__init__.py
index 6b6b8e103..b27cc6133 100644
--- a/yt_dlp/compat/urllib/__init__.py
+++ b/yt_dlp/compat/urllib/__init__.py
@@ -1,6 +1,9 @@
# 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')