]> jfr.im git - yt-dlp.git/blame - yt_dlp/utils/__init__.py
[cleanup] Misc
[yt-dlp.git] / yt_dlp / utils / __init__.py
CommitLineData
337734d4 1# flake8: noqa: F401, F403
69bec673 2import warnings
3
4from ..compat.compat_utils import passthrough_module
5
6# XXX: Implement this the same way as other DeprecationWarnings without circular import
7passthrough_module(__name__, '._legacy', callback=lambda attr: warnings.warn(
8 DeprecationWarning(f'{__name__}.{attr} is deprecated'), stacklevel=5))
9del passthrough_module
10
11# isort: off
12from .traversal import *
13from ._utils import *
14from ._utils import _configuration_args, _get_exe_version_output
15from ._deprecated import *