(self, config: dict[str, Any])
| 150 | return None |
| 151 | |
| 152 | def validate(self, config: dict[str, Any]) -> list[str]: |
| 153 | errors = super().validate(config) |
| 154 | if "command" not in config: |
| 155 | errors.append( |
| 156 | f"Command step {config.get('id', '?')!r} is missing 'command' field." |
| 157 | ) |
| 158 | return errors |