Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/rich/_extension.py: 100%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from typing import Any
4def load_ipython_extension(ip: Any) -> None: # pragma: no cover
5 # prevent circular import
6 from rich.pretty import install
7 from rich.traceback import install as tr_install
9 install()
10 tr_install()