11 lines
255 B
Python
11 lines
255 B
Python
"""Backwards-compatibility shim for top-level `rich_display` module.
|
|
|
|
Moved into `SYS.rich_display` — preserve old import path.
|
|
"""
|
|
|
|
from importlib import import_module
|
|
import sys
|
|
|
|
_real = import_module("SYS.rich_display")
|
|
sys.modules[__name__] = _real
|