Add compatibility shims at top-level to re-export SYS modules (pipeline/result_table/metadata/models/rich_display)

This commit is contained in:
2025-12-29 23:36:01 -08:00
parent ef01ca03a0
commit 4920ebf765
5 changed files with 56 additions and 0 deletions

10
rich_display.py Normal file
View File

@@ -0,0 +1,10 @@
"""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