We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca7dfe commit bf5baeeCopy full SHA for bf5baee
src/changelist/_format.py
@@ -163,11 +163,13 @@ def _format_contributor_section(
163
yield "\n"
164
165
yield f"{len(authors)} authors added to this release (alphabetically):\n"
166
+ yield "\n"
167
author_lines = map(self._format_user_line, authors)
168
yield from sorted(author_lines, key=lambda s: s.lower())
169
170
171
yield f"{len(reviewers)} reviewers added to this release (alphabetically):\n"
172
173
reviewers_lines = map(self._format_user_line, reviewers)
174
yield from sorted(reviewers_lines, key=lambda s: s.lower())
175
0 commit comments