Changeset 824e488 in sasview for src/sas/perspectives/invariant


Ignore:
Timestamp:
Mar 5, 2015 12:18:47 PM (10 years ago)
Author:
Mathieu Doucet <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:
b5de88e
Parents:
b9dbd6b
Message:

pylint fixes and remove old code

Location:
src/sas/perspectives/invariant
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/perspectives/invariant/invariant.py

    r78a205a r824e488  
    4747        # Log startup 
    4848        logging.info("Invariant plug-in started") 
    49  
    50     def help(self, evt): 
    51         """ 
    52         Show a general help dialog. 
    53         """ 
    54         from help_panel import  HelpWindow 
    55         frame = HelpWindow(None, -1) 
    56         if hasattr(frame, "IsIconized"): 
    57             if not frame.IsIconized(): 
    58                 try: 
    59                     icon = self.parent.GetIcon() 
    60                     frame.SetIcon(icon) 
    61                 except: 
    62                     logging.error(sys.exc_value) 
    63         frame.Show(True) 
    6449 
    6550    def get_data(self): 
Note: See TracChangeset for help on using the changeset viewer.