editors/CodeFileEditor.py
changeset 1739 ec153828ded2
parent 1736 7e61baa047f0
child 1740 b789b695b5c6
--- a/editors/CodeFileEditor.py	Mon Aug 14 23:38:28 2017 +0300
+++ b/editors/CodeFileEditor.py	Tue Aug 15 12:17:51 2017 +0300
@@ -677,7 +677,7 @@
         self.ParentWindow = window
         self.Controler = controler
 
-        self.VariablesDefaultValue = {"Name" : "", "Type" : DefaultType, "Initial": "",
+        self.VariablesDefaultValue = {"Name": "", "Type": DefaultType, "Initial": "",
                                       "Description":"", "OnChange":"", "Options":""}
         self.Table = VariablesTable(self, [], self.GetVariableTableColnames())
         self.ColAlignements = [wx.ALIGN_RIGHT] +  \
@@ -736,7 +736,7 @@
         self.Table.ResetView(self.VariablesGrid)
 
     def GetVariableTableColnames(self):
-        _ = lambda x : x
+        _ = lambda x: x
     	return ["#", _("Name"),_("Type"), _("Initial"), _("Description"), _("OnChange"), _("Options")]
 
     def RefreshModel(self):