(self, file: BytesIO, **kwargs: Any)
| 324 | |
| 325 | class PprintItemExporter(BaseItemExporter): |
| 326 | def __init__(self, file: BytesIO, **kwargs: Any): |
| 327 | super().__init__(**kwargs) |
| 328 | self.file: BytesIO = file |
| 329 | |
| 330 | def export_item(self, item: Any) -> None: |
| 331 | itemdict = dict(self._get_serialized_fields(item)) |