(self)
| 101 | ) |
| 102 | |
| 103 | def __bool__(self): |
| 104 | __tracebackhide__ = True |
| 105 | raise AssertionError( |
| 106 | "approx() is not supported in a boolean context.\nDid you mean: `assert a == approx(b)`?" |
| 107 | ) |
| 108 | |
| 109 | # Ignore type because of https://github.com/python/mypy/issues/4266. |
| 110 | __hash__ = None # type: ignore |
nothing calls this directly
no outgoing calls
no test coverage detected