(self, actual)
| 296 | return super().__eq__(actual) |
| 297 | |
| 298 | def _yield_comparisons(self, actual): |
| 299 | for k in self.expected.keys(): |
| 300 | yield actual[k], self.expected[k] |
| 301 | |
| 302 | def _check_type(self) -> None: |
| 303 | __tracebackhide__ = True |
nothing calls this directly
no outgoing calls
no test coverage detected