]> jfr.im git - yt-dlp.git/commitdiff
[cleanup, extractor] Rename `extractors.py` to `_extractors.py`
authorpukkandan <redacted>
Wed, 15 Jun 2022 12:29:35 +0000 (17:59 +0530)
committerpukkandan <redacted>
Thu, 16 Jun 2022 00:53:49 +0000 (06:23 +0530)
This should be considered part of the next commit,
but is separated so that `git` can detect the renaming better

yt_dlp/extractor/__init__.py
yt_dlp/extractor/_extractors.py [moved from yt_dlp/extractor/extractors.py with 100% similarity]

index afd3d05ac8f076022e9309f8baa2a01dfa739aa4..db7f3874bd28302af05b57faf21120747abf499d 100644 (file)
@@ -11,7 +11,7 @@
         _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()