(
self,
*args,
**kwargs,
)
| 117 | super().__init__(*arg_blocks, blocks=blocks, **kwargs) |
| 118 | |
| 119 | def upload( |
| 120 | self, |
| 121 | *args, |
| 122 | **kwargs, |
| 123 | ) -> None: |
| 124 | from ..processors import upload_report |
| 125 | |
| 126 | upload_report(*args, **kwargs) |
| 127 | |
| 128 | def save( |
| 129 | self, |
no test coverage detected