Skip to content

Commit

Permalink
Fix emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
robvanderleek committed Aug 10, 2024
1 parent fc4c774 commit bb738f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion codelimit/common/Scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ def add_file_entry(entry: SourceFileEntry):

_scan_folder(codebase, path, cached_report, add_file_entry)
live.stop()
live.refresh()
print()
print_refactor_candidates(scan_totals)
return codebase

Expand All @@ -73,7 +75,7 @@ def print_refactor_candidates(scan_totals: ScanTotals):
print(f" [red]\u2716[/red] {total_unmaintainable} functions need refactoring.")
if total_hard_to_maintain == 0 and total_unmaintainable == 0:
print(
" [bold]Refactoring not necessary, :sparkles: happy coding! :sparkles:[/bold]"
" [bold]Refactoring not necessary, :glowing_star: happy coding! :glowing_star:[/bold]"
)


Expand Down

0 comments on commit bb738f3

Please sign in to comment.