10 lines
265 B
Text
10 lines
265 B
Text
# Try to install rich's prettification stuff
|
|
try:
|
|
import rich.pretty
|
|
import rich.traceback
|
|
from rich import print
|
|
except ImportError:
|
|
print("Failed to import Rich for CLI prettification")
|
|
else:
|
|
rich.pretty.install()
|
|
rich.traceback.install()
|