Changeset b9d74f3 in sasview for src/sas/sasgui/plottools/LineModel.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/sasgui/plottools/LineModel.py
r959eb01 rb9d74f3 82 82 elif x.__class__.__name__ == 'tuple': 83 83 msg = "Tuples are not allowed as input to BaseComponent models" 84 raise ValueError , msg84 raise ValueError(msg) 85 85 else: 86 86 return self._line(x) … … 104 104 elif x.__class__.__name__ == 'tuple': 105 105 msg = "Tuples are not allowed as input to BaseComponent models" 106 raise ValueError , msg106 raise ValueError(msg) 107 107 else: 108 108 return self._line(x)
Note: See TracChangeset
for help on using the changeset viewer.