(self)
| 1428 | """ |
| 1429 | |
| 1430 | def to_string(self): |
| 1431 | if not self.is_valid: |
| 1432 | return self._format_null() |
| 1433 | index = deref(self.val['value']['index']) |
| 1434 | dictionary = deref(self.val['value']['dictionary']) |
| 1435 | return (f"{self._format_type()} of index {index}, " |
| 1436 | f"dictionary {dictionary}") |
| 1437 | |
| 1438 | |
| 1439 | class BaseListScalarPrinter(ScalarPrinter): |
nothing calls this directly
no test coverage detected