(self, candidate: Union["User", str])
| 57 | self._other: Specification = other |
| 58 | |
| 59 | def is_satisfied_by(self, candidate: Union["User", str]): |
| 60 | return bool( |
| 61 | self._one.is_satisfied_by(candidate) |
| 62 | or self._other.is_satisfied_by(candidate) |
| 63 | ) |
| 64 | |
| 65 | |
| 66 | class NotSpecification(CompositeSpecification): |
nothing calls this directly
no test coverage detected