From b467d1cff9353b65766e1888dda46efa84b86f43 Mon Sep 17 00:00:00 2001 From: George Evangelopoulos Date: Fri, 27 Mar 2026 19:52:22 +0100 Subject: [PATCH] fixed broken tool due to naming inconsistencies --- python/commands/library.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/commands/library.py b/python/commands/library.py index ef50aee..c897e4b 100644 --- a/python/commands/library.py +++ b/python/commands/library.py @@ -507,7 +507,7 @@ class LibraryCommands: def get_footprint_info(self, params: Dict) -> Dict: """Get information about a specific footprint""" try: - footprint_spec = params.get("footprint") + footprint_spec = params.get("footprint_name") if not footprint_spec: return {"success": False, "message": "Missing footprint parameter"} @@ -525,12 +525,12 @@ class LibraryCommands: info = { "library": library_nickname, - "footprint": footprint_name, + "name": footprint_name, "full_name": f"{library_nickname}:{footprint_name}", "library_path": library_path, } - return {"success": True, "footprint_info": info} + return {"success": True, "info": info} else: return { "success": False,