aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2022-06-15 17:59:35 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2022-06-16 06:23:49 +0530
commit99d10bf60796a90d2ca421ec63f1208b15ae5f48 (patch)
tree49a41e3895c0904866bda71e43acbb7a510ff3aa
parent145c5a83a80536b781fd043016bd27c91c760667 (diff)
downloadhypervideo-pre-99d10bf60796a90d2ca421ec63f1208b15ae5f48.tar.lz
hypervideo-pre-99d10bf60796a90d2ca421ec63f1208b15ae5f48.tar.xz
hypervideo-pre-99d10bf60796a90d2ca421ec63f1208b15ae5f48.zip
[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
-rw-r--r--yt_dlp/extractor/__init__.py2
-rw-r--r--yt_dlp/extractor/_extractors.py (renamed from yt_dlp/extractor/extractors.py)0
2 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()
diff --git a/yt_dlp/extractor/extractors.py b/yt_dlp/extractor/_extractors.py
index c7167a2cf..c7167a2cf 100644
--- a/yt_dlp/extractor/extractors.py
+++ b/yt_dlp/extractor/_extractors.py