Skip to content

Commit

Permalink
[components] Fix component.yaml generation to have a trailing newline (
Browse files Browse the repository at this point in the history
…#26660)

## Summary & Motivation

Without this the `component.yaml` files trigger prettier errors.

## How I Tested These Changes

Manual.
  • Loading branch information
schrockn authored Dec 21, 2024
1 parent 4a9ffa6 commit d8bac94
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def generate_component_yaml(
yaml.dump(
component_data, f, Dumper=ComponentDumper, sort_keys=False, default_flow_style=False
)
f.writelines([""])


def generate_component_instance(
Expand Down

0 comments on commit d8bac94

Please sign in to comment.