dotfiles/.config/pythonrc
Trysdyn Black 91d9d4c872 Remove pythonrc log disabling
It doesn't work in 3.13 and it's not super important anyway
2025-02-17 10:43:58 -08:00

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()