Skip to content

Commit eb5c42b

Browse files
committed
feat: give the DA more input detail
1 parent 93efeea commit eb5c42b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

micado_eec/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ def get_adt_inputs(adt):
5858
{
5959
"key": key,
6060
"description": details.get("description", "n/a").rstrip(),
61+
"required": details.get("required", True),
62+
"type": details.get("type", "string").rstrip(),
63+
"default": details.get("default", ""),
6164
}
6265
for key, details in adt.get("topology_template", {}).get("inputs", {}).items()
6366
if not key.startswith("EMG_SUBMISSION_ID")

0 commit comments

Comments
 (0)