Ignore:
Timestamp:
Mar 2, 2015 2:09:46 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:
13e46abe
Parents:
c93122e
Message:

Remove extra white spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/calculator/kiessig_calculator.py

    r79492222 r6bd3a8d1  
    1313    """ 
    1414    def __init__(self): 
    15          
     15 
    1616        # dq value 
    1717        self.deltaq = _DQ_DEFAULT 
     
    2020        # unit of the thickness 
    2121        self.thickness_unit = 'A' 
    22          
     22 
    2323    def set_deltaq(self, dq=None): 
    2424        """ 
    2525        Receive deltaQ value 
    26          
     26 
    2727        :param dq: q fringe width in 1/A unit 
    2828        """ 
    2929        # set dq 
    3030        self.deltaq = dq 
    31          
     31 
    3232    def get_deltaq(self): 
    3333        """ 
     
    4040        """ 
    4141        Calculate thickness. 
    42          
     42 
    4343        :return: the thickness. 
    4444        """ 
     
    5656            # return thickness value 
    5757            return thickness 
    58    
     58 
    5959    def get_thickness_unit(self): 
    6060        """ 
Note: See TracChangeset for help on using the changeset viewer.