1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-03-09 12:50:23 -05:00

Fix IN_CLI import

This commit is contained in:
coletdjnz 2024-11-30 14:36:53 +13:00
parent cd490eeeab
commit dad04bd4ba
No known key found for this signature in database
GPG key ID: 91984263BB39894A

View file

@ -51,7 +51,6 @@
compat_HTMLParseError,
)
from ..dependencies import xattr
from .._globals import IN_CLI
__name__ = __name__.rsplit('.', 1)[0] # noqa: A001: Pretend to be the parent module
@ -1484,7 +1483,8 @@ def write_string(s, out=None, encoding=None):
# TODO: Use global logger
def deprecation_warning(msg, *, printer=None, stacklevel=0, **kwargs):
if IN_CLI.value:
from .._globals import IN_CLI as _IN_CLI
if _IN_CLI.value:
if msg in deprecation_warning._cache:
return
deprecation_warning._cache.add(msg)