TUIAbstractPresenter.load_mainframe()   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
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