Ignore:
Timestamp:
Mar 4, 2015 3:39:45 PM (9 years ago)
Author:
Doucet, Mathieu <doucetm@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
74f419d
Parents:
2f732b0
Message:

Take care of white spaces (pylint)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/perspectives/fitting/hint_fitpage.py

    r79492222 r2f4b430  
    1313    ## Title to appear on top of the window 
    1414    window_caption = "Hint page " 
    15      
     15 
    1616    def __init__(self, parent): 
    1717        wx.ScrolledWindow.__init__(self, parent, 
    18                  style = wx.FULL_REPAINT_ON_RESIZE) 
     18                 style=wx.FULL_REPAINT_ON_RESIZE) 
    1919        PanelBase.__init__(self, parent) 
    2020        msg = "right click on the data when it is highlighted " 
    2121        msg += "the select option to fit for futher options" 
    2222        self.do_layout() 
    23          
     23 
    2424    def do_layout(self): 
    2525        """ 
     
    2727        """ 
    2828        name = "Hint" 
    29         box_description= wx.StaticBox(self, -1, name) 
     29        box_description = wx.StaticBox(self, -1, name) 
    3030        boxsizer = wx.StaticBoxSizer(box_description, wx.VERTICAL) 
    3131        msg = "    How to link data to the control panel: \n \n" 
     
    3434        msg += "    Finally, select 'Select data for fitting' in the pop-up menu. \n" 
    3535        self.hint_txt = wx.StaticText(self, -1, msg, style=wx.ALIGN_LEFT) 
    36         boxsizer.Add(self.hint_txt, wx.ALL|wx.EXPAND, 20) 
     36        boxsizer.Add(self.hint_txt, wx.ALL | wx.EXPAND, 20) 
    3737        self.vbox = wx.BoxSizer(wx.VERTICAL) 
    3838        self.vbox.Add(boxsizer) 
     
    4242        self.SetScrollbars(20, 20, 25, 65) 
    4343        self.Layout() 
    44          
     44 
    4545    def createMemento(self): 
    4646        return 
    47          
    48          
     47 
     48 
    4949class HelpWindow(wx.Frame): 
    5050    def __init__(self, parent, id, title): 
    5151        wx.Frame.__init__(self, parent, id, title, size=(570, 400)) 
    52         
     52 
    5353        self.page = HintFitPage(self) 
    5454        self.Centre() 
Note: See TracChangeset for help on using the changeset viewer.