(self, patch: dict)
| 203 | rely on the `page` argument to event handlers.""" |
| 204 | |
| 205 | def load_dict(self, patch: dict) -> None: |
| 206 | super().load_dict(patch) |
| 207 | if 'config_file_path' in patch: |
| 208 | raise base.ValidationError("Can't set config_file_path in config") |
| 209 | |
| 210 | def load_file(self, config_file: IO) -> None: |
| 211 | """Load config options from the open file descriptor of a YAML file.""" |
no outgoing calls