(self, config)
| 391 | ) |
| 392 | |
| 393 | def _negation_str(self, config): |
| 394 | if self.description is not None: |
| 395 | return "Not " + self._format_description(config) |
| 396 | else: |
| 397 | return self._eval_str(config, negate=True) |
| 398 | |
| 399 | def _as_string(self, config, negate=False): |
| 400 | if negate: |
no test coverage detected