From e8136ca9826afd492ef61f4ea1ef3d5a196df7ec Mon Sep 17 00:00:00 2001 From: hemanialaparthi Date: Thu, 14 Nov 2024 15:14:43 -0500 Subject: [PATCH] remove(display.py): the 'run' infront of all commands because that is not needed --- execexam/display.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/execexam/display.py b/execexam/display.py index 29a2c81..f283eda 100644 --- a/execexam/display.py +++ b/execexam/display.py @@ -38,35 +38,35 @@ def display_tldr(console: Console) -> None: commands = { "mark": { - "command": "run execexam --mark mark_type", + "command": "execexam --mark mark_type", "description": "Run tests with specific markers.", }, "maxfail": { - "command": "run execexam --maxfail number", + "command": "execexam --maxfail number", "description": "Set maximum number of test failures before stopping test execution (default: 10)", }, "report": { - "command": "run execexam --report report_type/all", + "command": "execexam --report report_type/all", "description": "Generate the specified type(s) of reports after the exam. Use 'all' to generate all available report types.", }, "advice-method": { - "command": " --advice-method --advice-model --advice-server ", + "command": "execexam --advice-method --advice-model --advice-server ", "description": "Specify the LLM model and advice method to use Coding Mentor. Consult documentation for available models and methods.", }, "debug": { - "command": "run execexam --debug/--no-debug", + "command": "execexam --debug/--no-debug", "description": "Enable or disable debug mode to collect additional debugging information during execution.", }, "fancy": { - "command": "run execexam --fancy/--no-fancy", + "command": "execexam --fancy/--no-fancy", "description": "Toggle fancy output formatting. Disable for simpler output in plain-text environments.", }, "verbose": { - "command": "run execexam --verbose/--no-verbose", + "command": "execexam --verbose/--no-verbose", "description": "Enable or disable verbose output to see more detailed logs of the program's execution.", }, "syntax-theme": { - "command": "run execexam --syntax-theme theme_name", + "command": "execexam --syntax-theme theme_name", "description": "Choose syntax highlighting theme for code output (options: ansi_dark, ansi_light)", }, }