From a225fb007339ee1f53cddbb3e0a695fb1ca4e9ef Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Fri, 5 May 2023 16:59:22 -0700 Subject: [PATCH] Add python-rich pretty print to REPL --- .config/pythonrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/pythonrc b/.config/pythonrc index 9860579..1472769 100644 --- a/.config/pythonrc +++ b/.config/pythonrc @@ -9,6 +9,7 @@ else: # Try to install rich's prettification stuff try: from rich import pretty + from rich import print except ImportError: print("Failed to import Rich for CLI prettification") else: