Skip to content

Commit

Permalink
Fix the grep
Browse files Browse the repository at this point in the history
  • Loading branch information
cscollett committed Aug 30, 2024
1 parent d7076c2 commit ee06f6f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,7 @@ def generate_simplified_summary_report(summary):
if details.get('python_version'):
report_lines.append(f"LANGUAGE VERSION: {details['python_version']}")

if details['status'] != "success":
report_lines.append("Issues Found: Yes")
else:
report_lines.append("Issues Found: No")
report_lines.append(f"Issues Found: {'Yes' if details['issues_found'] else 'No'}")

report_lines.append("\n" + "-"*40 + "\n")

Expand Down

0 comments on commit ee06f6f

Please sign in to comment.