mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 17:23:48 +01:00
c365dba843
No actual changes - code is only moved around
13 lines
292 B
Python
13 lines
292 B
Python
# flake8: noqa: F401, F403
|
|
import warnings
|
|
|
|
from ..compat.compat_utils import passthrough_module
|
|
|
|
passthrough_module(__name__, '._deprecated')
|
|
del passthrough_module
|
|
|
|
# isort: off
|
|
from .traversal import *
|
|
from ._utils import *
|
|
from ._utils import _configuration_args, _get_exe_version_output
|