From 69f41da8da87170a6c4b24701f7011e998d5923d Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 4 Apr 2024 11:02:24 -0400 Subject: [PATCH] fix: exception traceback is too big (#191) Signed-off-by: Henry Schreiner --- src/repo_review/__main__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/repo_review/__main__.py b/src/repo_review/__main__.py index f3bcc6e..2da81e7 100644 --- a/src/repo_review/__main__.py +++ b/src/repo_review/__main__.py @@ -41,7 +41,9 @@ def __dir__() -> list[str]: return __all__ -rich.traceback.install(suppress=[click, rich, orig_click], show_locals=True, width=None) +rich.traceback.install( + suppress=[click, rich, orig_click], show_locals=False, width=None +) Status = Literal["empty", "passed", "skips", "errors"] Formats = Literal["rich", "json", "html", "svg"]