mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 17:13:35 +08:00
10 lines
241 B
Python
10 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()
|