(self)
| 244 | with numeric values (the keys can be anything).""" |
| 245 | |
| 246 | def __repr__(self) -> str: |
| 247 | return "approx({!r})".format( |
| 248 | {k: self._approx_scalar(v) for k, v in self.expected.items()} |
| 249 | ) |
| 250 | |
| 251 | def _repr_compare(self, other_side: Mapping[object, float]) -> List[str]: |
| 252 | import math |
nothing calls this directly
no test coverage detected