Skip to content

Commit bf5baee

Browse files
Add newline before lists in contributor section (#40)
1 parent 7ca7dfe commit bf5baee

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/changelist/_format.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,13 @@ def _format_contributor_section(
163163
yield "\n"
164164

165165
yield f"{len(authors)} authors added to this release (alphabetically):\n"
166+
yield "\n"
166167
author_lines = map(self._format_user_line, authors)
167168
yield from sorted(author_lines, key=lambda s: s.lower())
168169
yield "\n"
169170

170171
yield f"{len(reviewers)} reviewers added to this release (alphabetically):\n"
172+
yield "\n"
171173
reviewers_lines = map(self._format_user_line, reviewers)
172174
yield from sorted(reviewers_lines, key=lambda s: s.lower())
173175
yield "\n"

0 commit comments

Comments
 (0)