Add python-rich pretty print to REPL

This commit is contained in:
Trysdyn Black 2023-05-05 16:59:22 -07:00
parent a1a852dee1
commit a225fb0073

View file

@ -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: