Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham authored Jun 14, 2023
1 parent 40e070d commit 1d4f06f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion conda_forge_tick/migrators/migration_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,9 @@ def pr_body(self, feedstock_ctx: "FeedstockContext") -> str:
)
)

commit_body = " ".join([e for e in self.commit_message(feedstock_ctx).splitlines()[1:] if e])
commit_body = " ".join(
[e for e in self.commit_message(feedstock_ctx).splitlines()[1:] if e],
)
if commit_body:
additional_body += (
"<hr>"
Expand Down

0 comments on commit 1d4f06f

Please sign in to comment.