11 lines
241 B
Python
11 lines
241 B
Python
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()
|