(self, candidate: Union["User", str])
| 45 | self._other: Specification = other |
| 46 | |
| 47 | def is_satisfied_by(self, candidate: Union["User", str]) -> bool: |
| 48 | return bool( |
| 49 | self._one.is_satisfied_by(candidate) |
| 50 | and self._other.is_satisfied_by(candidate) |
| 51 | ) |
| 52 | |
| 53 | |
| 54 | class OrSpecification(CompositeSpecification): |
nothing calls this directly
no test coverage detected