mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-14 01:41:23 -06:00
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()
|