Skip to content

Commit 9cc7074

Browse files
committed
Do not use raw key
1 parent 8f21ac1 commit 9cc7074

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runbook/cli/commands/plan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def plan(ctx, input, embed, identifier="", params={}, prompter=""):
9797
# Inferred_type_name is language specific
9898
formatted_params = {}
9999
for key, value in inferred_params.items():
100-
if key != "__RUNBOOK_METADATA__":
100+
if key != RUNBOOK_METADATA:
101101
default = value["default"].rstrip(";")
102102
typing = value["inferred_type_name"] or ""
103103
help = value["help"] or ""

0 commit comments

Comments
 (0)