streamlink/tests/plugin/override/testplugin.py

11 lines
166 B
Python

# ruff: noqa: INP001
from tests.plugin.testplugin import __plugin__ as TestPlugin
class TestPluginOverride(TestPlugin):
pass
__plugin__ = TestPluginOverride