enforce PEP8 in previous commit
authorEdouard Tisserant
Thu, 04 Jan 2018 16:00:35 +0100
changeset 1886 e4a656e73aec
parent 1885 570122574a97
child 1887 1b9907ef770b
enforce PEP8 in previous commit
controls/ProjectPropertiesPanel.py
--- a/controls/ProjectPropertiesPanel.py	Fri Jan 20 13:22:31 2017 +0100
+++ b/controls/ProjectPropertiesPanel.py	Thu Jan 04 16:00:35 2018 +0100
@@ -75,7 +75,7 @@
 
         # Project Panel elements
 
-        self.ProjectPanel = ScrolledPanel(self,-1,style=wx.TAB_TRAVERSAL)
+        self.ProjectPanel = ScrolledPanel(self, -1, style=wx.TAB_TRAVERSAL)
         self.ProjectPanel.SetAutoLayout(1)
         self.ProjectPanel.SetupScrolling()
         projectpanel_sizer = wx.FlexGridSizer(cols=2, hgap=5, rows=5, vgap=15)
@@ -93,7 +93,7 @@
 
         # Author Panel elements
 
-        self.AuthorPanel = ScrolledPanel(self,-1,style=wx.TAB_TRAVERSAL)
+        self.AuthorPanel = ScrolledPanel(self, -1, style=wx.TAB_TRAVERSAL)
         self.AuthorPanel.SetAutoLayout(1)
         self.AuthorPanel.SetupScrolling()
         authorpanel_sizer = wx.FlexGridSizer(cols=2, hgap=5, rows=4, vgap=15)
@@ -110,7 +110,7 @@
 
         # Graphics Panel elements
 
-        self.GraphicsPanel = ScrolledPanel(self,-1,style=wx.TAB_TRAVERSAL)
+        self.GraphicsPanel = ScrolledPanel(self, -1, style=wx.TAB_TRAVERSAL)
         self.GraphicsPanel.SetAutoLayout(1)
         self.GraphicsPanel.SetupScrolling()
         graphicpanel_sizer = wx.FlexGridSizer(cols=1, hgap=5, rows=4, vgap=5)
@@ -189,8 +189,10 @@
         # Miscellaneous Panel elements
 
         self.MiscellaneousPanel = ScrolledPanel(id=-1, parent=self,
-              name='MiscellaneousPanel', pos=wx.Point(0, 0),
-              size=wx.Size(0, 0), style=wx.TAB_TRAVERSAL)
+                                                name='MiscellaneousPanel',
+                                                pos=wx.Point(0, 0),
+                                                size=wx.Size(0, 0),
+                                                style=wx.TAB_TRAVERSAL)
         self.MiscellaneousPanel.SetAutoLayout(1)
         self.MiscellaneousPanel.SetupScrolling()
         miscellaneouspanel_sizer = wx.FlexGridSizer(cols=2, hgap=5, rows=2, vgap=15)