diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-07-22 17:56:53 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-07-22 18:10:35 +0530 |
commit | a250b247334ce9f641e709cbb64974da6034a2b3 (patch) | |
tree | 61b9d391cf861ca626ca08befaf54319a248f7d1 /yt_dlp/utils/__init__.py | |
parent | 25b6e8f94679b4458550702b46e61249b875a4fd (diff) | |
download | hypervideo-pre-a250b247334ce9f641e709cbb64974da6034a2b3.tar.lz hypervideo-pre-a250b247334ce9f641e709cbb64974da6034a2b3.tar.xz hypervideo-pre-a250b247334ce9f641e709cbb64974da6034a2b3.zip |
[compat] Ensure submodules are imported correctly
Closes #7663
Diffstat (limited to 'yt_dlp/utils/__init__.py')
-rw-r--r-- | yt_dlp/utils/__init__.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/yt_dlp/utils/__init__.py b/yt_dlp/utils/__init__.py index 0b00adddb..c267e326f 100644 --- a/yt_dlp/utils/__init__.py +++ b/yt_dlp/utils/__init__.py @@ -1,6 +1,4 @@ -# flake8: noqa: F401, F403 -import warnings - +# flake8: noqa: F403 from ..compat.compat_utils import passthrough_module passthrough_module(__name__, '._deprecated') @@ -9,4 +7,4 @@ del passthrough_module # isort: off from .traversal import * from ._utils import * -from ._utils import _configuration_args, _get_exe_version_output +from ._utils import _configuration_args, _get_exe_version_output # noqa: F401 |