Revert unrelated changes

This commit is contained in:
Lev Plyusnin 2024-01-03 14:50:55 +07:00
parent 265e0f7154
commit 41c3dab547
No known key found for this signature in database
GPG Key ID: 21C6C2C9C0A4460D

View File

@ -3929,9 +3929,10 @@ class YoutubeDL:
# These imports can be slow. So import them only as needed
from .extractor.extractors import _LAZY_LOADER
from .extractor.extractors import _PLUGIN_CLASSES as plugin_ies
from .extractor.extractors import \
from .extractor.extractors import (
_PLUGIN_CLASSES as plugin_ies,
_PLUGIN_OVERRIDES as plugin_ie_overrides
)
def get_encoding(stream):
ret = str(getattr(stream, 'encoding', 'missing (%s)' % type(stream).__name__))