(self)
| 294 | return removed_non_keep, removed_keep |
| 295 | |
| 296 | def validate(self) -> None: |
| 297 | if not self.config: |
| 298 | raise ConfigError("node configuration missing", extend_path(self.path, "config")) |
| 299 | if hasattr(self.config, "validate"): |
| 300 | self.config.validate() |
| 301 | |
| 302 | @property |
| 303 | def node_type(self) -> str: |
no test coverage detected