Total Complexity | 3 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | from msquaredc.ui.interfaces import AbstractPresenter |
||
4 | class TUIAbstractPresenter(AbstractPresenter): |
||
5 | def __init__(self, *args, **kwargs): |
||
6 | super(TUIAbstractPresenter, self).__init__(__class__.__name__, *args, **kwargs) |
||
7 | |||
8 | def new_project_wizard(self, path=None): |
||
9 | self.logger.info("Creating a new Project.") |
||
10 | |||
11 | def load_mainframe(self, *args, **kwargs): |
||
12 | self.logger.info("Loading Mainframe.") |
||
13 |