(self)
| 1319 | """ |
| 1320 | |
| 1321 | def to_string(self): |
| 1322 | if not self.is_valid: |
| 1323 | return self._format_null() |
| 1324 | value = self.val['value'] |
| 1325 | return f"{self._format_type()} of value {format_date32(value)}" |
| 1326 | |
| 1327 | |
| 1328 | class Date64ScalarPrinter(TimeScalarPrinter): |
nothing calls this directly
no test coverage detected