(self, data: Union[dict, List[dict]])
| 294 | print(data) |
| 295 | |
| 296 | def save_binary(self, data: Union[dict, List[dict]]) -> str: |
| 297 | if self.output_path is None: |
| 298 | raise KeyError( |
| 299 | "When using piped input on pipeline outputting large object requires an output file path. " |
| 300 | "Please provide such output path through --output argument." |
| 301 | ) |
| 302 | |
| 303 | return super().save_binary(data) |
| 304 | |
| 305 | |
| 306 | class _ScikitCompat(ABC): |
nothing calls this directly
no test coverage detected