mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
5ca095cbcd
Closes #7796, Closes #8028 Authored by: barsnick, sqrtNOT, gamer191, coletdjnz, Grub4K, bashonly
10 lines
229 B
Python
10 lines
229 B
Python
# flake8: noqa: F405
|
|
from urllib import * # noqa: F403
|
|
|
|
del request # noqa: F821
|
|
from . import request # noqa: F401
|
|
|
|
from ..compat_utils import passthrough_module
|
|
|
|
passthrough_module(__name__, 'urllib')
|
|
del passthrough_module
|