revert debugging

This commit is contained in:
2025-10-15 20:54:22 +08:00
parent bcb9ead2fb
commit d5d6282e23

View File

@@ -41,7 +41,7 @@ class ToolManager:
tool_confs = []
for e in dir(self.config):
el = getattr(self.config, e)
if ("calc_config" in e) and is_dataclass(el):
if ("config" in e) and is_dataclass(el):
tool_confs.append(el)
return tool_confs