[core] Widen validate_version input annotation to Any

It is wired straight into the schema, so it receives raw YAML and never
coerces the value itself.
This commit is contained in:
Jesse Hills
2026-08-22 17:38:58 +12:00
parent f5c92aaefe
commit 56dbf680c9
+1 -1
View File
@@ -175,7 +175,7 @@ def validate_sha256(value: Any) -> str:
return value
def validate_version(value: str) -> str:
def validate_version(value: Any) -> str:
parse_firmware_version(value)
return value