(self, call_super, raise_in_constructor=True)
| 332 | class ErrorModule(module.Module): |
| 333 | |
| 334 | def __init__(self, call_super, raise_in_constructor=True): |
| 335 | if call_super: |
| 336 | super(ErrorModule, self).__init__() |
| 337 | if raise_in_constructor: |
| 338 | raise ErrorModuleError("Deliberate error!") |
| 339 | |
| 340 | def __call__(self): |
| 341 | raise ErrorModuleError("Deliberate error!") |
nothing calls this directly
no test coverage detected