connectors/WAMP/dialog.py
changeset 2182 eeca1aff0691
parent 2180 017ad9cc20b9
--- a/connectors/WAMP/dialog.py	Sat Jun 09 17:13:16 2018 +0300
+++ b/connectors/WAMP/dialog.py	Sat Jun 09 17:14:56 2018 +0300
@@ -8,9 +8,11 @@
 
 from __future__ import absolute_import
 from __future__ import print_function
+
 import wx
+from zope.interface import implementer
+
 from controls.UriLocationEditor import IConnectorPanel
-from zope.interface import implementer
 
 URITypes = ["WAMP", "WAMPS"]
 
@@ -18,7 +20,6 @@
 def WAMP_connector_dialog(confnodesroot):
     [ID_IPTEXT, ID_PORTTEXT, ID_REALMTEXT, ID_WAMPIDTEXT, ID_SECURECHECKBOX] = [wx.NewId() for _init_ctrls in range(5)]
 
-
     @implementer(IConnectorPanel)
     class WAMPConnectorPanel(wx.Panel):
         def __init__(self, typeConnector, parrent, *args, **kwargs):
@@ -30,10 +31,10 @@
             self.uri = None
 
         def _init_ctrls(self):
-            self.IpText = wx.TextCtrl(parent=self, id=ID_IPTEXT, size = wx.Size(200, -1))
-            self.PortText = wx.TextCtrl(parent=self, id=ID_PORTTEXT, size = wx.Size(200, -1))
-            self.RealmText = wx.TextCtrl(parent=self, id=ID_REALMTEXT, size = wx.Size(200, -1))
-            self.WAMPIDText = wx.TextCtrl(parent=self, id=ID_WAMPIDTEXT, size = wx.Size(200, -1))
+            self.IpText = wx.TextCtrl(parent=self, id=ID_IPTEXT, size=wx.Size(200, -1))
+            self.PortText = wx.TextCtrl(parent=self, id=ID_PORTTEXT, size=wx.Size(200, -1))
+            self.RealmText = wx.TextCtrl(parent=self, id=ID_REALMTEXT, size=wx.Size(200, -1))
+            self.WAMPIDText = wx.TextCtrl(parent=self, id=ID_WAMPIDTEXT, size=wx.Size(200, -1))
             self.SecureCheckbox = wx.CheckBox(self, ID_SECURECHECKBOX, _("Is connection secure?"))
 
         def _init_sizers(self):