| Total Complexity | 3 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | from groundwork.patterns import GwBasePattern |
||
| 4 | class EmptyPlugin(GwBasePattern): |
||
| 5 | def __init__(self, app, name=None, *args, **kwargs): |
||
| 6 | self.name = name or self.__class__.__name__ |
||
| 7 | super(EmptyPlugin, self).__init__(app, *args, **kwargs) |
||
| 8 | |||
| 9 | def activate(self): |
||
| 10 | pass |
||
| 11 | |||
| 12 | def deactivate(self): |
||
| 13 | pass |
||
| 14 |