add list command

This commit is contained in:
2026-09-25 19:19:34 +02:00
parent d4c78cc29d
commit de223ca303
8 changed files with 49 additions and 12 deletions
+2 -1
View File
@@ -52,7 +52,8 @@ def generate_node_from_click(ctx, additional_properties=False):
if param.multiple:
props[name] = {"type": "array", "items": props[name]}
props[name]["description"] = param.help
if param.help:
props[name]["description"] = param.help
default = param.to_info_dict()["default"]
if default is not None and not param.multiple: