Ignore:
Timestamp:
Apr 11, 2017 6:11:14 AM (8 years ago)
Author:
andyfaff
Children:
9c23f40
Parents:
0741804
git-author:
Andrew Nelson <andyfaff@…> (04/07/17 07:53:49)
git-committer:
Andrew Nelson <andyfaff@…> (04/11/17 06:11:14)
Message:

PEP8: replace some 'if x == True:' by 'if x'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sascalc/dataloader/readers/abs_reader.py

    r959eb01 r083afa1  
    6969                data_conv_i = None 
    7070                 
    71                 if has_converter == True and output.x_unit != '1/A': 
     71                if has_converter and output.x_unit != '1/A': 
    7272                    data_conv_q = Converter('1/A') 
    7373                    # Test it 
    7474                    data_conv_q(1.0, output.x_unit) 
    7575                     
    76                 if has_converter == True and output.y_unit != '1/cm': 
     76                if has_converter and output.y_unit != '1/cm': 
    7777                    data_conv_i = Converter('1/cm') 
    7878                    # Test it 
     
    8282                     
    8383                    # Information line 1 
    84                     if is_info == True: 
     84                    if is_info: 
    8585                        is_info = False 
    8686                        line_toks = line.split() 
     
    8989                        try: 
    9090                            value = float(line_toks[1]) 
    91                             if has_converter == True and \ 
     91                            if has_converter and \ 
    9292                                output.source.wavelength_unit != 'A': 
    9393                                conv = Converter('A') 
     
    104104                        try: 
    105105                            value = float(line_toks[3]) 
    106                             if has_converter == True and \ 
     106                            if has_converter and \ 
    107107                                detector.distance_unit != 'm': 
    108108                                conv = Converter('m') 
     
    125125                        try: 
    126126                            value = float(line_toks[5]) 
    127                             if has_converter == True and \ 
     127                            if has_converter and \ 
    128128                                output.sample.thickness_unit != 'cm': 
    129129                                conv = Converter('cm') 
     
    142142                         
    143143                    # Find center info line 
    144                     if is_center == True: 
     144                    if is_center: 
    145145                        is_center = False 
    146146                        line_toks = line.split() 
     
    150150                         
    151151                        # Bin size 
    152                         if has_converter == True and \ 
     152                        if has_converter and \ 
    153153                            detector.pixel_size_unit != 'mm': 
    154154                            conv = Converter('mm') 
     
    163163                        # Store beam center in distance units 
    164164                        # Det 640 x 640 mm 
    165                         if has_converter == True and \ 
     165                        if has_converter and \ 
    166166                            detector.beam_center_unit != 'mm': 
    167167                            conv = Converter('mm') 
     
    187187                         
    188188                    # Parse the data 
    189                     if is_data_started == True: 
     189                    if is_data_started: 
    190190                        toks = line.split() 
    191191 
Note: See TracChangeset for help on using the changeset viewer.