(self)
| 236 | with numeric values (the keys can be anything).""" |
| 237 | |
| 238 | def __repr__(self) -> str: |
| 239 | return f"approx({ ({k: self._approx_scalar(v) for k, v in self.expected.items()})!r})" |
| 240 | |
| 241 | def _repr_compare(self, other_side: Mapping[object, float]) -> list[str]: |
| 242 | import math |
nothing calls this directly
no test coverage detected