Removes unused commands from CLI docs

Updates the CLI documentation to reflect the current set of implemented commands.

The 'dev' command no longer includes 'preflight' and 'validate' subcommands.
Removes these commands from the valid commands list.
This commit is contained in:
Vijay Janapa Reddi
2026-01-25 13:23:17 -05:00
parent 55ca7f976b
commit b15ff98abb

View File

@@ -36,7 +36,7 @@ VALID_COMMANDS: Dict[str, List[str]] = {
"logo": [], # No subcommands
"system": ["info", "health", "jupyter", "update", "logo"],
"module": ["start", "view", "resume", "complete", "test", "reset", "status", "list"],
"dev": ["preflight", "export", "validate"],
"dev": ["test", "export"],
"src": ["export", "test"],
"package": ["reset", "nbdev"],
"nbgrader": ["init", "generate", "release", "collect", "autograde", "feedback", "status", "analytics", "report"],