Changeset 7343319 in sasview


Ignore:
Timestamp:
Apr 18, 2012 9:38:52 AM (12 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:
31f9d0c2
Parents:
43e8326
Message:

Fixing code style problems

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • calculatorview/src/sans/perspectives/calculator/console.py

    r6572274 r7343319  
    2020    FONT_VARIANT = 1 
    2121     
    22  
    2322class ConsoleDialog(wx.Dialog): 
     23    """ 
     24        Data summary dialog 
     25    """ 
    2426    def __init__(self, parent=None, manager=None, data=None, 
    2527                    title="Data Summary", size=(PANEL_WIDTH, PANEL_HEIGHT)): 
  • calculatorview/src/sans/perspectives/calculator/load_thread.py

    r79411b2 r7343319  
    1  
     1""" 
     2    Thread handler used to load data 
     3""" 
    24import time 
    3  
    4  
    55from data_util.calcthread import CalcThread 
    66from sans.dataloader.loader import Loader 
    77         
    8  
    98class DataReader(CalcThread): 
    109    """ 
    11             Load a data given a filename 
     10        Load a data given a filename 
    1211    """ 
    1312    def __init__(self, path, completefn=None, 
  • sansmodels/src/python_wrapper/WrapperGenerator.py

    r5c46f43 r7343319  
    459459             
    460460            # non-fittable list details 
     461            pars_str = str(self.non_fittable) 
     462            pars_str = pars_str.replace(', ', '\n                             ') 
    461463            newline = self.replaceToken(newline,  
    462464                                        "[NON_FITTABLE_PARAMS]", 
    463                                         str(self.non_fittable)) 
     465                                        pars_str) 
    464466             
    465467            ## parameters with orientation 
    466468            oriented_str = str(self.orientation_params) 
    467             formatted_endl = '\n                                  ' 
     469            formatted_endl = '\n                                   ' 
    468470            oriented_str = oriented_str.replace(', ', formatted_endl) 
    469471            newline = self.replaceToken(newline,  
  • sansview/custom_config.py

    rc00592d r7343319  
    1 #Application appearance custom configuration 
     1""" 
     2    Application appearance custom configuration 
     3""" 
    24DATAPANEL_WIDTH = 260 
    35CLEANUP_PLOT = False 
Note: See TracChangeset for help on using the changeset viewer.