From 3efa1e5a068ac2e9d528dbd8396b015ce6667b3b Mon Sep 17 00:00:00 2001 From: Melissa Autumn Date: Thu, 18 Apr 2024 11:33:17 -0700 Subject: [PATCH] Completely disable 'pretty exceptions'. --- backend/src/appointment/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()