mirror of https://github.com/yt-dlp/yt-dlp.git
[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:
parent
145c5a83a8
commit
99d10bf607
|
@ -11,7 +11,7 @@ if not os.environ.get('YTDLP_NO_LAZY_EXTRACTORS'):
|
||||||
_LAZY_LOADER = True
|
_LAZY_LOADER = True
|
||||||
|
|
||||||
if not _LAZY_LOADER:
|
if not _LAZY_LOADER:
|
||||||
from .extractors import * # noqa: F403
|
from ._extractors import * # noqa: F403
|
||||||
_ALL_CLASSES = [ # noqa: F811
|
_ALL_CLASSES = [ # noqa: F811
|
||||||
klass
|
klass
|
||||||
for name, klass in globals().items()
|
for name, klass in globals().items()
|
||||||
|
|
Loading…
Reference in New Issue