Return the default data format for this accessor.
(self)
| 487 | raise NotImplementedError |
| 488 | |
| 489 | def to_default(self) -> Block: |
| 490 | """Return the default data format for this accessor.""" |
| 491 | return self.to_block() |
| 492 | |
| 493 | def to_batch_format(self, batch_format: Optional[str]) -> DataBatch: |
| 494 | """Convert this block into the provided batch format. |
no test coverage detected