Skip to content

Commit

Permalink
refactor: Make the default for the debug option to be False in execex…
Browse files Browse the repository at this point in the history
…am/main.py.
  • Loading branch information
gkapfham committed Sep 8, 2024
1 parent 05616a0 commit 637d4df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion execexam/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def run( # noqa: PLR0913, PLR0915
None, help="LLM model: https://docs.litellm.ai/docs/providers"
),
advice_server: str = typer.Option(None, help="URL of the LiteLLM server"),
debug: bool = typer.Option(True, help="Collect debugging information"),
debug: bool = typer.Option(False, help="Collect debugging information"),
fancy: bool = typer.Option(True, help="Display fancy output"),
syntax_theme: enumerations.Theme = typer.Option(
enumerations.Theme.ansi_dark, help="Syntax highlighting theme"
Expand Down

0 comments on commit 637d4df

Please sign in to comment.