(self, candidate: Union["User", str])
| 68 | self._wrapped: Specification = wrapped |
| 69 | |
| 70 | def is_satisfied_by(self, candidate: Union["User", str]): |
| 71 | return bool(not self._wrapped.is_satisfied_by(candidate)) |
| 72 | |
| 73 | |
| 74 | class User: |
nothing calls this directly
no test coverage detected