Skip to content

Commit

Permalink
fix: exception traceback is too big (#191)
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii authored Apr 4, 2024
1 parent 813a36e commit 69f41da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/repo_review/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down

0 comments on commit 69f41da

Please sign in to comment.