1
0
Fork 0

[compat] Ensure submodules are imported correctly

Closes #7663
This commit is contained in:
pukkandan 2023-07-22 17:56:53 +05:30
commit a250b24733
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
5 changed files with 18 additions and 12 deletions

View file

@ -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')