Skip to content

Commit

Permalink
Update cli.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Oct 15, 2024
1 parent 6a5c8c6 commit 50b9746
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lea/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@

import lea

app = typer.Typer()
app = typer.Typer(
# We set this to False to avoid showing locals in the traceback, which can be a security risk
# if the code is running in production.
pretty_exceptions_show_locals=False
)


def validate_env_path(env_path: str | None):
Expand Down

0 comments on commit 50b9746

Please sign in to comment.