13 lines
368 B
Python
13 lines
368 B
Python
"""Compatibility shim for GraphManager.
|
|
|
|
Re-exports the canonical implementation from `thechart.analytics.graph_manager`.
|
|
This keeps `from graph_manager import GraphManager` working for legacy scripts.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
raise ImportError(
|
|
"src.graph_manager is removed. Import GraphManager from "
|
|
"'thechart.analytics.graph_manager'."
|
|
)
|