Total Complexity | 3 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | from groundwork_spreadsheets import ExcelValidationPattern |
||
10 | class ReadCustomExcel(ExcelValidationPattern): |
||
11 | def __init__(self, app, name=None, *args, **kwargs): |
||
12 | self.name = name or self.__class__.__name__ |
||
13 | super(ReadCustomExcel, self).__init__(app, *args, **kwargs) |
||
14 | |||
15 | def activate(self): |
||
16 | pass |
||
17 | |||
18 | def deactivate(self): |
||
19 | pass |
||
20 | |||
30 |