Skip to content

Commit

Permalink
fix: added missing line-break
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianKuesters committed Mar 18, 2024
1 parent f532383 commit c815129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def set_github_output(name: str, value: Any) -> None:
return

with open(file_path, 'a') as fh:
fh.write(f'{name}={value}')
fh.write(f'{name}={value}\n')


def setup_logging() -> None:
Expand Down

0 comments on commit c815129

Please sign in to comment.