Completed
Push — master ( 0d93d1...88297e )
by Jerome
47s
created

TUIAbstractPresenter   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
dl 0
loc 9
rs 10
c 1
b 0
f 1
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A load_mainframe() 0 2 1
A new_project_wizard() 0 2 1
A __init__() 0 2 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__(__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