mirror of
https://github.com/apache/superset.git
synced 2026-07-09 16:25:36 +00:00
`import superset.mcp_service.chart.tool.get_chart_info as module` resolves to the get_chart_info *function* rather than the module because chart/tool/__init__.py imports the function under the same name, overwriting the submodule attribute on the parent package. Replace with get_chart_info_module (already imported via importlib at module level), which correctly resolves to the module object.