Skip to content

Commit

Permalink
style: beautify 2c7b6ec
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Apr 6, 2024
1 parent 2c7b6ec commit b9ecd84
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions semantic_release/cli/github_actions_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,7 @@ def to_output_text(self) -> str:
"tag": self.tag,
}

return str.join("", [
f"{key}={value!s}\n" for key, value in outputs.items()
])
return str.join("", [f"{key}={value!s}\n" for key, value in outputs.items()])

def write_if_possible(self, filename: str | None = None) -> None:
output_file = filename or os.getenv(self.OUTPUT_ENV_VAR)
Expand Down

0 comments on commit b9ecd84

Please sign in to comment.