diff options
Diffstat (limited to 'yt_dlp/extractor/__init__.py')
-rw-r--r-- | yt_dlp/extractor/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/__init__.py b/yt_dlp/extractor/__init__.py index afd3d05ac..db7f3874b 100644 --- a/yt_dlp/extractor/__init__.py +++ b/yt_dlp/extractor/__init__.py @@ -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() |