Skip to content

Commit

Permalink
Remove redundant line separator after generated table (#1650)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmG3 authored Jul 25, 2022
1 parent 37e62c9 commit 13ea9ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion megalinter/utils_reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def build_markdown_summary(reporter_self, action_run_url):
# Build markdown table
table_data_raw.pop(0)
writer = MarkdownTableWriter(headers=table_header, value_matrix=table_data_raw)
table_content = str(writer) + os.linesep if len(table_data_raw) > 1 else ""
table_content = str(writer)
status = (
"✅"
if reporter_self.master.return_code == 0
Expand Down

0 comments on commit 13ea9ab

Please sign in to comment.