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

11
metadata.py Normal file
View File

@@ -0,0 +1,11 @@
"""Backwards-compatibility shim for top-level `metadata` module.
Moved into `SYS.metadata` — keep the old import path working for tests
and third-party code.
"""
from importlib import import_module
import sys
_real = import_module("SYS.metadata")
sys.modules[__name__] = _real