add updates libs

This commit is contained in:
Christoph Brandau
2026-06-18 17:21:58 +02:00
parent 91ce762570
commit 41f331d4c4
150 changed files with 8249 additions and 2550 deletions
+8 -2
View File
@@ -1,5 +1,6 @@
from collections.abc import Callable
from voluptuous import Schema, Optional, Or, Self
from voluptuous import Optional, Or, Schema, Self
# Need to define this as a Schema with required=True to ensure that this requirement
# persists through the Or in the main schema definition.
@@ -9,7 +10,12 @@ _command_args = Schema(
{
"name": str,
"required": bool,
"value": Or({"type": "any"}, {"type": "variadic"}),
"value": Or(
{"type": "any"},
{"type": "variadic"},
{"type": "script"},
{"type": "expression"},
),
}
],
Optional("switches", default={}): {