(
self,
where=None,
columns=None,
start: int | None = None,
stop: int | None = None,
)
| 2941 | return True |
| 2942 | |
| 2943 | def read( |
| 2944 | self, |
| 2945 | where=None, |
| 2946 | columns=None, |
| 2947 | start: int | None = None, |
| 2948 | stop: int | None = None, |
| 2949 | ) -> Series | DataFrame: |
| 2950 | raise NotImplementedError( |
| 2951 | "cannot read on an abstract storer: subclasses should implement" |
| 2952 | ) |
| 2953 | |
| 2954 | def write(self, obj, **kwargs) -> None: |
| 2955 | raise NotImplementedError( |
no outgoing calls
no test coverage detected