summaryrefslogtreecommitdiff
path: root/plugins/test.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2018-08-15 13:13:17 +0200
committermathieui <mathieui@mathieui.net>2018-08-15 13:13:17 +0200
commit6e13b8b73572f9c0ac9b5c683b98a475afbeab38 (patch)
tree7dae86588339a8cf144b2d98c9280f28646341a9 /plugins/test.py
parentd1b624753bb5371cf287cc9d86bb685593a99315 (diff)
downloadpoezio-6e13b8b73572f9c0ac9b5c683b98a475afbeab38.tar.gz
poezio-6e13b8b73572f9c0ac9b5c683b98a475afbeab38.tar.bz2
poezio-6e13b8b73572f9c0ac9b5c683b98a475afbeab38.tar.xz
poezio-6e13b8b73572f9c0ac9b5c683b98a475afbeab38.zip
yapf -rip on plugins
Diffstat (limited to 'plugins/test.py')
-rw-r--r--plugins/test.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/plugins/test.py b/plugins/test.py
index a518984f..72924c91 100644
--- a/plugins/test.py
+++ b/plugins/test.py
@@ -1,10 +1,13 @@
from poezio.plugin import BasePlugin
from poezio import tabs
+
class Plugin(BasePlugin):
def init(self):
- self.api.add_command('plugintest', self.command_plugintest, 'Test command')
- self.api.add_tab_command(tabs.MucTab, 'plugintest', self.command_tab_plugintest, 'Test command')
+ self.api.add_command('plugintest', self.command_plugintest,
+ 'Test command')
+ self.api.add_tab_command(tabs.MucTab, 'plugintest',
+ self.command_tab_plugintest, 'Test command')
self.api.add_slix_event_handler('message', self.on_message)
self.api.information("Plugin loaded")
@@ -12,7 +15,8 @@ class Plugin(BasePlugin):
self.api.information("Plugin unloaded")
def on_message(self, message):
- self.api.information("Test plugin received message: {}".format(message))
+ self.api.information(
+ "Test plugin received message: {}".format(message))
def command_tab_plugintest(self, args):
self.api.information("Command for MucTabs! With args {}".format(args))