QuickRepliesPlugin. pep8

This commit is contained in:
Denis Fomin
2013-05-31 20:42:00 +04:00
parent b2341159cf
commit 3070c72003

View File

@@ -16,7 +16,7 @@ class QuickRepliesPlugin(GajimPlugin):
self.chat_control = None self.chat_control = None
self.gui_extension_points = { self.gui_extension_points = {
'chat_control_base': (self.connect_with_chat_control, 'chat_control_base': (self.connect_with_chat_control,
self.disconnect_from_chat_control),} self.disconnect_from_chat_control), }
self.config_default_values = { self.config_default_values = {
'entry1': ('Hello!', ''), 'entry1': ('Hello!', ''),
'entry2': ('How are you?', ''), 'entry2': ('How are you?', ''),
@@ -45,6 +45,7 @@ class QuickRepliesPlugin(GajimPlugin):
control.disconnect_from_chat_control() control.disconnect_from_chat_control()
self.controls = [] self.controls = []
class Base(object): class Base(object):
def __init__(self, plugin, chat_control): def __init__(self, plugin, chat_control):
@@ -108,6 +109,7 @@ class Base(object):
actions_hbox = self.chat_control.xml.get_object('actions_hbox') actions_hbox = self.chat_control.xml.get_object('actions_hbox')
actions_hbox.remove(self.button) actions_hbox.remove(self.button)
class QuickRepliesPluginConfigDialog(GajimPluginConfigDialog): class QuickRepliesPluginConfigDialog(GajimPluginConfigDialog):
def init(self): def init(self):
@@ -133,4 +135,3 @@ class QuickRepliesPluginConfigDialog(GajimPluginConfigDialog):
self.plugin.config[name] = widget.get_text() self.plugin.config[name] = widget.get_text()
for control in self.plugin.controls: for control in self.plugin.controls:
control.create_menu() control.create_menu()