Skip to content

Commit 0015324

Browse files
Merge pull request #292 from craigcomstock/ent-13571
Fixed input variable having no response breaking the build
2 parents 0fe97e4 + 51aaa77 commit 0015324

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cfbs/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def _generate_augment(module_name, input_data):
7070
if not isinstance(variable, dict) or any(
7171
key not in variable for key in ("variable", "response")
7272
):
73-
return None
73+
continue
7474

7575
name = variable["variable"]
7676
namespace = variable.get("namespace", "cfbs")

0 commit comments

Comments
 (0)