diff --git a/.config/pythonrc b/.config/pythonrc index 1472769..c610b88 100644 --- a/.config/pythonrc +++ b/.config/pythonrc @@ -8,10 +8,11 @@ else: # Try to install rich's prettification stuff try: - from rich import pretty + import rich.pretty + import rich.traceback from rich import print except ImportError: print("Failed to import Rich for CLI prettification") else: - pretty.install() - + rich.pretty.install() + rich.traceback.install()