controls/TextCtrlAutoComplete.py
changeset 1733 dea107dce0c4
parent 1571 486f94a8032c
child 1735 c02818d7e29f
--- a/controls/TextCtrlAutoComplete.py	Mon Aug 14 21:20:32 2017 +0300
+++ b/controls/TextCtrlAutoComplete.py	Mon Aug 14 21:31:01 2017 +0300
@@ -119,7 +119,7 @@
 
         wx.TextCtrl.__init__(self, parent, **therest)
         
-        #Some variables
+        # Some variables
         self._dropDownClick = dropDownClick
         self._lastinsertionpoint = None
         self._hasfocus = False
@@ -142,7 +142,7 @@
         self.Bind(wx.EVT_TEXT, self.OnEnteredText)
         self.Bind(wx.EVT_KEY_DOWN, self.OnKeyDown)
 
-        #If need drop down on left click
+        # If need drop down on left click
         if dropDownClick:
             self.Bind(wx.EVT_LEFT_DOWN, self.OnClickToggleDown)
             self.Bind(wx.EVT_LEFT_UP, self.OnClickToggleUp)