codekingpro's picture
Add files using upload-large-folder tool
5debfc5 verified
Raw
History Blame Contribute Delete
241 Bytes
from typing import Any
def load_ipython_extension(ip: Any) -> None: # pragma: no cover
# prevent circular import
from rich.pretty import install
from rich.traceback import install as tr_install
install()
tr_install()