(self, item: Any)
| 328 | self.file: BytesIO = file |
| 329 | |
| 330 | def export_item(self, item: Any) -> None: |
| 331 | itemdict = dict(self._get_serialized_fields(item)) |
| 332 | self.file.write(to_bytes(pprint.pformat(itemdict) + "\n")) |
| 333 | |
| 334 | |
| 335 | class PythonItemExporter(BaseItemExporter): |
nothing calls this directly
no test coverage detected