Skip to content

Commit

Permalink
Update pylint report formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
97gamjak committed Apr 28, 2024
1 parent 5f17055 commit 9c2b8f2
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/scripts/parse_pylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,15 @@ def main(lines):

report = lines[report_start_index:report_end_index-2]

print("PYLINT REPORT")
print()
print(summary)
print()
print("PYLINT REPORT ")
print(" ")
print(summary, " ")
print(" ")
print("<details>")
print(" <summary>Full report</summary>")
print()
print(" ")
for line in report:
print(" ", line, "\n")
print()
print(" ", line, " \n")
print("</details>")


Expand Down

0 comments on commit 9c2b8f2

Please sign in to comment.