(self)
| 84 | return Metric(self._name, self._documentation, self._type, self._unit) |
| 85 | |
| 86 | def describe(self) -> Iterable[Metric]: |
| 87 | return [self._get_metric()] |
| 88 | |
| 89 | def collect(self) -> Iterable[Metric]: |
| 90 | metric = self._get_metric() |
nothing calls this directly
no test coverage detected