From ab266a07fb59d3029bf2fb93152f18df5ee11bfc Mon Sep 17 00:00:00 2001 From: yyc12345 Date: Thu, 24 Jul 2025 22:03:42 +0800 Subject: [PATCH] fix: fix BME JSONs validator error --- scripts/validate_jsons.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/validate_jsons.py b/scripts/validate_jsons.py index dbce1ae..9023396 100644 --- a/scripts/validate_jsons.py +++ b/scripts/validate_jsons.py @@ -164,7 +164,7 @@ def _validate_prototype(prototype: bme.Prototype, identifiers: set[str]) -> None _validate_showcase(prototype.showcase, variables) _validate_params(prototype.params, variables) _check_programmable_field(prototype.skip) - _validate_vars(prototype.vars, identifiers) + _validate_vars(prototype.vars, variables) _validate_vertices(prototype.vertices) _validate_faces(prototype.faces, len(prototype.vertices)) _validate_instances(prototype.instances, identifiers)