Skip to content

Commit

Permalink
Update wording for reported results
Browse files Browse the repository at this point in the history
  • Loading branch information
drdavella committed Dec 20, 2023
1 parent 45e8ed5 commit 671c820
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pixee/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,10 @@ def summarize_results(combined_codetf):
console.print("No changes applied", style="bold")
return

console.print(f"Found and fixed the following {len(results)} issues:", style="bold")
console.print(
f"Found {len(results)} opportunities to harden and improve your code:",
style="bold",
)
table = Table(show_header=True, header_style="bold")
table.add_column("Codemod", style="dim")
table.add_column("Summary", style="bold")
Expand Down

0 comments on commit 671c820

Please sign in to comment.