aboutsummaryrefslogtreecommitdiff
path: root/test/testdata/plugin_packages
diff options
context:
space:
mode:
authorImran Hussain <ih@imranh.co.uk>2024-10-20 18:10:26 +0100
committerGitHub <noreply@github.com>2024-10-20 17:10:26 +0000
commit0f593dca9fa995d88eb763170a932da61c8f24dc (patch)
tree601f201d5981bb0b12b6a01e782be97849cc177e /test/testdata/plugin_packages
parent8de431ec97a4b62b73df8f686b6e21e462775336 (diff)
Add option `--plugin-dirs` (#11277)
Closes #3260 Authored by: imranh2, coletdjnz Co-authored-by: coletdjnz <coletdjnz@protonmail.com>
Diffstat (limited to 'test/testdata/plugin_packages')
-rw-r--r--test/testdata/plugin_packages/testpackage/yt_dlp_plugins/extractor/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/testdata/plugin_packages/testpackage/yt_dlp_plugins/extractor/package.py b/test/testdata/plugin_packages/testpackage/yt_dlp_plugins/extractor/package.py
new file mode 100644
index 000000000..b860300d8
--- /dev/null
+++ b/test/testdata/plugin_packages/testpackage/yt_dlp_plugins/extractor/package.py
@@ -0,0 +1,5 @@
+from yt_dlp.extractor.common import InfoExtractor
+
+
+class PackagePluginIE(InfoExtractor):
+ pass