From bed65a6da25106da9209f274af0e8a65398248b6 Mon Sep 17 00:00:00 2001 From: Tom Date: Fri, 6 Mar 2026 17:32:21 +0100 Subject: [PATCH] fix: true -> True in tool_schemas.py (Python NameError) --- python/schemas/tool_schemas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/schemas/tool_schemas.py b/python/schemas/tool_schemas.py index f827e2d..59dafa9 100644 --- a/python/schemas/tool_schemas.py +++ b/python/schemas/tool_schemas.py @@ -305,7 +305,7 @@ BOARD_TOOLS = [ "filled": { "type": "boolean", "description": "Fill polygons with solid layer colour (default true)", - "default": true + "default": True } }, "required": ["pcbPath", "svgPath", "x", "y", "width"]