# HG changeset patch # User Edouard Tisserant # Date 1515078035 -3600 # Node ID e4a656e73aeca01ca93fc9a30850a8cac40376ec # Parent 570122574a97b40fa06b07174ef9d905311047bd enforce PEP8 in previous commit diff -r 570122574a97 -r e4a656e73aec 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)