(self, name, val)
| 1682 | """ |
| 1683 | |
| 1684 | def __init__(self, name, val): |
| 1685 | self.unit = self.type['unit_'] |
| 1686 | self.unit_string = short_time_unit(self.unit) |
| 1687 | |
| 1688 | def _format_value(self, val): |
| 1689 | return f"{val}{self.unit_string}" |
nothing calls this directly
no test coverage detected