TUIAbstractPresenter.new_project_wizard()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
dl 0
loc 2
rs 10
c 1
b 0
f 1
1
from msquaredc.ui.interfaces import AbstractPresenter
2
3
4
class TUIAbstractPresenter(AbstractPresenter):
5
    def __init__(self, *args, **kwargs):
6
        super(TUIAbstractPresenter, self).__init__(__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