[cleanup, extractor] Rename `extractors.py` to `_extractors.py`

This should be considered part of the next commit,
but is separated so that `git` can detect the renaming better
This commit is contained in:
pukkandan 2022-06-15 17:59:35 +05:30
parent 145c5a83a8
commit 99d10bf607
No known key found for this signature in database
GPG Key ID: 7EEE9E1E817D0A39
2 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ if not os.environ.get('YTDLP_NO_LAZY_EXTRACTORS'):
_LAZY_LOADER = True
if not _LAZY_LOADER:
from .extractors import * # noqa: F403
from ._extractors import * # noqa: F403
_ALL_CLASSES = [ # noqa: F811
klass
for name, klass in globals().items()