Skip to content

Commit

Permalink
Roll back the default_flow_style to fix the double quote issue (kubef…
Browse files Browse the repository at this point in the history
  • Loading branch information
pugangxa authored Mar 30, 2021
1 parent 4b5230b commit 79b972f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/kfp_tekton/compiler/yaml_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@ def dump_yaml(data: Any, stream: Optional[TextIO] = None, **kwargs) -> Optional[
# PyYAML doesn't handle bool-like strings properly, so it needs to be fixed.
# See https://github.com/yaml/pyyaml/issues/247

return yaml.dump(data, stream, _Dumper, default_flow_style=None, **kwargs)
return yaml.dump(data, stream, _Dumper, default_flow_style=False, **kwargs)

0 comments on commit 79b972f

Please sign in to comment.