Skip to content

Commit

Permalink
fixed printing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
valayDave committed Apr 20, 2022
1 parent 169ac15 commit 584e88b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaflow/plugins/airflow/airflow_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def _validate_workflow(graph, flow_datastore, metadata):
for node in graph:
if node.type == "foreach":
raise NotSupportedException(
"Step *%s* is a foreach and for foreach steps are not supported with airflow."
"Step *%s* is a foreach step and foreach steps are not supported with airflow."
)

if any([d.name == "batch" for d in node.decorators]):
Expand Down

0 comments on commit 584e88b

Please sign in to comment.