(self)
| 1306 | """ |
| 1307 | |
| 1308 | def to_string(self): |
| 1309 | unit = short_time_unit(self.type['unit_']) |
| 1310 | if not self.is_valid: |
| 1311 | return f"{self._format_type()} of null value [{unit}]" |
| 1312 | value = self.val['value'] |
| 1313 | return f"{self._format_type()} of value {value}{unit}" |
| 1314 | |
| 1315 | |
| 1316 | class Date32ScalarPrinter(TimeScalarPrinter): |
nothing calls this directly
no test coverage detected