Skip to content

Commit

Permalink
Simplify generator expression (#5870)
Browse files Browse the repository at this point in the history
  • Loading branch information
monosans authored Sep 16, 2021
1 parent c8e2e2c commit e70d3e6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES/5870.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Simplify generator expression.
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Alexandru Mihai
Alexey Firsov
Alexey Popravka
Alexey Stepanov
Almaz Salakhov
Amin Etesamian
Amit Tulshyan
Amy Boyle
Expand Down
2 changes: 1 addition & 1 deletion tools/gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def gen(dct):
out.write(HEADER)
missing = set()
gen_block(dct, "", set(), missing, out)
missing_labels = "\n".join(m for m in sorted(missing))
missing_labels = "\n".join(sorted(missing))
out.write(FOOTER.format(missing=missing_labels))
return out

Expand Down

0 comments on commit e70d3e6

Please sign in to comment.