Skip to content

Commit

Permalink
IBX-149: Reformat code to make lint more happy (part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibexa-yuna committed Apr 20, 2021
1 parent df37cfa commit 660b82c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,14 @@ def main():
# This is why prepare_output() is used: replace all \n with %0A
messages = header
if improvements:
messages += "\n\n### Improvements\n\n" + "\n".join(map(str, improvements))
messages += "\n\n### Improvements\n\n" + \
"\n".join(map(str, improvements))
if bugs:
messages += "\n\n### Bugs\n\n" + "\n".join(map(str, bugs))
messages += "\n\n### Bugs\n\n" + \
"\n".join(map(str, bugs))
if miscellaneous:
messages += "\n\n### Misc\n\n" + "\n".join(map(str, miscellaneous))
messages += "\n\n### Misc\n\n" + \
"\n".join(map(str, miscellaneous))

if bare_output:
print(messages)
Expand Down

0 comments on commit 660b82c

Please sign in to comment.