source: sasview/src/sas/qtgui/Perspectives/__init__.py @ 8d39961

Last change on this file since 8d39961 was 7adc2a8, checked in by Piotr Rozyczko <rozyczko@…>, 7 years ago

Allow old style threads for fitting

  • Property mode set to 100644
File size: 309 bytes
Line 
1# Available perspectives.
2# When adding a new perspective, this dictionary needs to be updated
3
4from Fitting.FittingPerspective import FittingWindow
5from Invariant.InvariantPerspective import InvariantWindow
6
7PERSPECTIVES = {
8    FittingWindow.name: FittingWindow,
9    InvariantWindow.name: InvariantWindow,
10}
Note: See TracBrowser for help on using the repository browser.