(self, dct: dict[str, Any])
| 400 | |
| 401 | class NotAllowed(cfgv.OptionalNoDefault): |
| 402 | def check(self, dct: dict[str, Any]) -> None: |
| 403 | if self.key in dct: |
| 404 | raise cfgv.ValidationError(f'{self.key!r} cannot be overridden') |
| 405 | |
| 406 | |
| 407 | _COMMON_HOOK_WARNINGS = ( |
no outgoing calls