Ignore:
Timestamp:
Nov 1, 2018 2:35:01 PM (5 years ago)
Author:
Jeff Krzywon <jkrzywon@…>
Branches:
master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249
Children:
9b08354
Parents:
dfcdbf8
Message:

Change errors in NXcanSAS reader to a list to match the rest of the readers and update unit test.

File:
1 edited

Legend:

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

    rdfcdbf8 r282bc3f  
    102102        self.data2d = [] 
    103103        self.raw_data = None 
    104         self.errors = set() 
     104        self.errors = [] 
    105105        self.logging = [] 
    106106        self.q_names = [] 
     
    231231            else: 
    232232                # I don't know if this reachable code 
    233                 self.errors.add("ShouldNeverHappenException") 
     233                self.errors.append("ShouldNeverHappenException") 
    234234 
    235235    def process_1d_data_object(self, data_set, key, unit): 
     
    528528        # Append errors to dataset and reset class errors 
    529529        self.current_datainfo.errors = self.errors 
    530         self.errors.clear() 
     530        self.errors = [] 
    531531 
    532532        # Combine all plottables with datainfo and append each to output 
     
    538538                    zeros[i] = dataset.mask[i] 
    539539            except: 
    540                 self.errors.add(sys.exc_value) 
     540                self.errors.append(sys.exc_value) 
    541541            dataset.mask = zeros 
    542542            # Calculate the actual Q matrix 
Note: See TracChangeset for help on using the changeset viewer.