summaryrefslogtreecommitdiff
path: root/plugins/embed.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/embed.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/embed.py')
-rw-r--r--plugins/embed.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/plugins/embed.py b/plugins/embed.py
index 717fc3c5..726b1eb2 100644
--- a/plugins/embed.py
+++ b/plugins/embed.py
@@ -17,13 +17,16 @@ from poezio import tabs
from poezio.plugin import BasePlugin
from poezio.theming import get_theme
-class Plugin(BasePlugin):
+class Plugin(BasePlugin):
def init(self):
for tab_t in [tabs.MucTab, tabs.ConversationTab, tabs.PrivateTab]:
- self.api.add_tab_command(tab_t, 'embed', self.embed_image_url,
- help='Embed an image url into the contact\'s client',
- usage='<image_url>')
+ self.api.add_tab_command(
+ tab_t,
+ 'embed',
+ self.embed_image_url,
+ help='Embed an image url into the contact\'s client',
+ usage='<image_url>')
def embed_image_url(self, args):
tab = self.api.current_tab()