[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
pull/4085/head
pukkandan 2022-06-15 17:59:35 +05:30
rodzic 145c5a83a8
commit 99d10bf607
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7EEE9E1E817D0A39
2 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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()