(self, other_side: Any)
| 89 | raise NotImplementedError |
| 90 | |
| 91 | def _repr_compare(self, other_side: Any) -> List[str]: |
| 92 | return [ |
| 93 | "comparison failed", |
| 94 | f"Obtained: {other_side}", |
| 95 | f"Expected: {self}", |
| 96 | ] |
| 97 | |
| 98 | def __eq__(self, actual) -> bool: |
| 99 | return all( |