aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/compat/urllib/__init__.py
blob: b27cc6133c44cd046892251ea0279f459cb2ba9a (plain)
1
2
3
4
5
6
7
8
9
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