(self)
| 1358 | """ |
| 1359 | |
| 1360 | def to_string(self): |
| 1361 | if not self.is_valid: |
| 1362 | return self._format_null() |
| 1363 | value = self.val['value'] |
| 1364 | return f"{self._format_type()} of value {format_month_interval(value)}" |
| 1365 | |
| 1366 | |
| 1367 | class DecimalScalarPrinter(ScalarPrinter): |
nothing calls this directly
no test coverage detected