Print validation error with --help guidance. Args: message: Error message help_command: Command to show help for (e.g., "u scene load")
(message: str, help_command: str)
| 260 | |
| 261 | |
| 262 | def print_validation_error(message: str, help_command: str) -> None: |
| 263 | """Print validation error with --help guidance. |
| 264 | |
| 265 | Args: |
| 266 | message: Error message |
| 267 | help_command: Command to show help for (e.g., "u scene load") |
| 268 | """ |
| 269 | print_error(f"{message}. Run '{help_command} --help' for usage.") |
| 270 | |
| 271 | |
| 272 | def print_success(message: str) -> None: |
no test coverage detected