Skip to content

Commit

Permalink
Add print statements to improve readability of pylint report
Browse files Browse the repository at this point in the history
  • Loading branch information
97gamjak committed Apr 28, 2024
1 parent 9f9a33a commit 5f17055
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/scripts/parse_pylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,15 @@ def main(lines):

report = lines[report_start_index:report_end_index-2]

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

Expand Down

0 comments on commit 5f17055

Please sign in to comment.