aminghadersohi commented on code in PR #37183: URL: https://github.com/apache/superset/pull/37183#discussion_r2706595830
########## superset/mcp_service/chart/tool/get_chart_info.py: ########## @@ -36,6 +36,22 @@ logger = logging.getLogger(__name__) +def _get_cached_form_data(form_data_key: str) -> str | None: + """Retrieve form_data from cache using form_data_key. + + Returns the JSON string of form_data if found, None otherwise. + """ + from superset.commands.explore.form_data.get import GetFormDataCommand + from superset.commands.explore.form_data.parameters import CommandParameters Review Comment: command and daos cause circular import issues in top level in mcp tools files -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
