summaryrefslogtreecommitdiff
path: root/plugins/python/liveconv/plugin.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/python/liveconv/plugin.py')
-rw-r--r--plugins/python/liveconv/plugin.py19
1 files changed, 8 insertions, 11 deletions
diff --git a/plugins/python/liveconv/plugin.py b/plugins/python/liveconv/plugin.py
index a1a182e..eadbea0 100644
--- a/plugins/python/liveconv/plugin.py
+++ b/plugins/python/liveconv/plugin.py
@@ -8,21 +8,18 @@ from .panel import ConvPanel
class LiveConverter(PluginModule):
"""Convert raw values into interpreted values."""
+ _name = 'LiveConverter'
+ _desc = 'Convert raw values into interprered values'
+ _version = '0.1'
+ _url = 'https://www.chrysalide.re/'
- def __init__(self):
- """Initialize the plugin for Chrysalide."""
-
- interface = {
+ _actions = ( )
- 'name' : 'LiveConverter',
- 'desc' : 'Convert raw values into interprered values',
- 'version' : '0.1',
- 'actions' : ( )
-
- }
+ def __init__(self):
+ """Initialize the plugin for Chrysalide."""
- super(LiveConverter, self).__init__(**interface)
+ super(LiveConverter, self).__init__()
p = ConvPanel()