controls/TextCtrlAutoComplete.py
changeset 1745 f9d32913bad4
parent 1736 7e61baa047f0
child 1767 c74815729afd
--- a/controls/TextCtrlAutoComplete.py	Tue Aug 15 22:38:43 2017 +0300
+++ b/controls/TextCtrlAutoComplete.py	Wed Aug 16 11:47:27 2017 +0300
@@ -40,7 +40,7 @@
     def __init__(self, parent, choices=[]):
         wx.PopupWindow.__init__(self, parent, wx.BORDER_SIMPLE)
 
-        self.ListBox = wx.ListBox(self, -1, style=wx.LB_HSCROLL|wx.LB_SINGLE|wx.LB_SORT)
+        self.ListBox = wx.ListBox(self, -1, style=wx.LB_HSCROLL | wx.LB_SINGLE | wx.LB_SORT)
 
         self.SetChoices(choices)