(self, config, negate=False)
| 364 | return not self.predicate(config) |
| 365 | |
| 366 | def _as_string(self, config, negate=False): |
| 367 | if self.description: |
| 368 | return self._format_description(config, not negate) |
| 369 | else: |
| 370 | return self.predicate._as_string(config, not negate) |
| 371 | |
| 372 | |
| 373 | class OrPredicate(Predicate): |
nothing calls this directly
no test coverage detected