(self)
| 145 | """Perform approximate comparisons where the expected value is numpy array.""" |
| 146 | |
| 147 | def __repr__(self) -> str: |
| 148 | list_scalars = _recursive_list_map(self._approx_scalar, self.expected.tolist()) |
| 149 | return f"approx({list_scalars!r})" |
| 150 | |
| 151 | def _repr_compare(self, other_side: "ndarray") -> List[str]: |
| 152 | import itertools |
nothing calls this directly
no test coverage detected