mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-25 01:22:28 +00:00
7 lines
148 B
Python
7 lines
148 B
Python
|
from senpy.plugins import SenpyPlugin
|
||
|
|
||
|
class DummyPlugin(SenpyPlugin):
|
||
|
def __init__(self):
|
||
|
super(DummyPlugin, self).__init__("dummy")
|
||
|
|