Completed
Push — master ( c54497...3b5137 )
by Daniel
58s
created

WebPlugin.deactivate()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 2
rs 10
1
from groundwork_web.patterns import GwWebPattern
2
3
4
class WebPlugin(GwWebPattern):
5
    def __init__(self, *args, **kwargs):
6
        self.name = kwargs.get("name", self.__class__.__name__)
7
        super().__init__(*args, **kwargs)
8
9
    def activate(self):
10
        pass
11
12
    def deactivate(self):
13
        pass
14