@@ -383,7 +383,7 @@ def _print_results_summary(results, use_aider: bool, backends, console: Console)
383383 "invalid" : sum (1 for r in results if r .status == "invalid" ),
384384 "not_found" : sum (1 for r in results if r .status == "not_found" ),
385385 "already_fixed" : sum (1 for r in results if r .status == "already_fixed" ),
386- "cancelled " : sum (1 for r in results if r .status == "cancelled " ),
386+ "no_changes " : sum (1 for r in results if r .status == "no_changes " ),
387387 "skipped" : sum (1 for r in results if r .status in ["dry_run" , "skipped" ]),
388388 }
389389
@@ -392,15 +392,15 @@ def _print_results_summary(results, use_aider: bool, backends, console: Console)
392392 console .print (f" [yellow]⚠ Invalid (no changes):[/yellow] { counts ['invalid' ]} " )
393393 console .print (f" [dim]⊘ Not found:[/dim] { counts ['not_found' ]} " )
394394 console .print (f" [dim]⊘ Already fixed:[/dim] { counts ['already_fixed' ]} " )
395- console .print (f" [cyan]⊘ Cancelled :[/cyan] { counts ['cancelled ' ]} " )
395+ console .print (f" [cyan]⊘ No changes needed :[/cyan] { counts ['no_changes ' ]} " )
396396 console .print (f" [dim]⊘ Skipped:[/dim] { counts ['skipped' ]} " )
397397
398- detail_statuses = {"invalid" , "not_found" , "already_fixed" , "cancelled " }
398+ detail_statuses = {"invalid" , "not_found" , "already_fixed" , "no_changes " }
399399 detail_colors = {
400400 "invalid" : ("yellow" , "⚠" ),
401401 "not_found" : ("dim" , "⊘" ),
402402 "already_fixed" : ("dim" , "⊘" ),
403- "cancelled " : ("cyan" , "⊘" ),
403+ "no_changes " : ("cyan" , "⊘" ),
404404 }
405405 if any (counts [s ] > 0 for s in detail_statuses ):
406406 console .print ("\n [dim]Validation details:[/dim]" )
0 commit comments