Changeset b9d74f3 in sasview for src/sas/sascalc/corfunc/corfunc_calculator.py
- Timestamp:
- Apr 20, 2017 6:29:34 AM (8 years ago)
- Children:
- 0cc77d8
- Parents:
- b636dfc5
- git-author:
- Andrew Nelson <andyfaff@…> (04/20/17 06:25:57)
- git-committer:
- Andrew Nelson <andyfaff@…> (04/20/17 06:29:34)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sascalc/corfunc/corfunc_calculator.py
rff11b21 rb9d74f3 80 80 # Only process data of the class Data1D 81 81 if not issubclass(data.__class__, Data1D): 82 raise ValueError , "Data must be of the type DataLoader.Data1D"82 raise ValueError("Data must be of the type DataLoader.Data1D") 83 83 84 84 # Prepare the data … … 151 151 err = ("Incorrect transform type supplied, must be 'fourier'", 152 152 " or 'hilbert'") 153 raise ValueError , err153 raise ValueError(err) 154 154 155 155 self._transform_thread.queue()
Note: See TracChangeset
for help on using the changeset viewer.