diff --git a/backend/src/appointment/main.py b/backend/src/appointment/main.py index 0cbd0c0c8..6a3d46cb9 100644 --- a/backend/src/appointment/main.py +++ b/backend/src/appointment/main.py @@ -188,7 +188,7 @@ def cli(): from .routes import commands - app = typer.Typer() + app = typer.Typer(pretty_exceptions_enable=False) # We don't have too many commands, so just dump them under main for now. app.add_typer(commands.router, name="main") app()