12 lines
282 B
Python
12 lines
282 B
Python
|
|
"""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
|