(self)
| 117 | raise NotImplementedError |
| 118 | |
| 119 | def validate(self): |
| 120 | if not self.blocks: |
| 121 | raise BlocksNotFoundException("No blocks required by template were found.") |
| 122 | |
| 123 | |
| 124 | class ReportTemplate(IPythonTemplate, template_name="report"): |
no test coverage detected