Skip to content

Commit

Permalink
gitlab_release_notes/generate.py: Line-wrap generate_release_notes() …
Browse files Browse the repository at this point in the history
…call and re-order kwargs.
  • Loading branch information
sunweaver committed Oct 3, 2023
1 parent a2d1885 commit d245c63
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion gitlab_release_notes/generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,12 @@ def main():
endstr = ' <br>'
else:
endstr = '\n'
notes = generate_release_notes(args.project_id, url=args.url, endstr=endstr, private_token=args.private_token, since=args.since)
notes = generate_release_notes(args.project_id,
url=args.url,
endstr=endstr,
since=args.since,
private_token=args.private_token,
)
print(notes)

if __name__ == "__main__":
Expand Down

0 comments on commit d245c63

Please sign in to comment.