File Manager V1.5

[SYSTEM@ROOT]: /usr/lib/python3/dist-packages/rich/
INJECT_FILE:
NEW_ENTRY:

FILE_CONTENT: _extension.py

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()
[ KEMBALI ]