| 22 | |
| 23 | |
| 24 | class Parser(BaseObject): |
| 25 | |
| 26 | schema = ParserSchema() |
| 27 | |
| 28 | @property |
| 29 | def unique(self): |
| 30 | return self.module |
| 31 | |
| 32 | def __init__(self, module, parserconfigs): |
| 33 | super().__init__() |
| 34 | self.module = module |
| 35 | self.parserconfigs = parserconfigs |
no test coverage detected