(self, output_type: Literal["dataframe", "dict"] = "dataframe")
| 47 | self.file_name_prefix = file_name_prefix |
| 48 | |
| 49 | def read(self, output_type: Literal["dataframe", "dict"] = "dataframe") -> Any: |
| 50 | return self._data |
| 51 | |
| 52 | def write(self, data): |
| 53 | self._data = data |
nothing calls this directly
no outgoing calls
no test coverage detected