Skip to content

Commit

Permalink
fix: Release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
robvanderleek committed Aug 10, 2024
1 parent bb738f3 commit 5ce902f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
ref: main
- name: 'Set up Python'
uses: actions/setup-python@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions codelimit/common/ScanResultTable.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def __init__(self, scan_totals: ScanTotals):
self.add_column("Files", f'{scan_totals.total_files():n}', justify="right")
self.add_column("Lines of Code", f'{scan_totals.total_loc():n}', justify="right")
self.add_column("Functions", f'{scan_totals.total_functions():n}', justify="right")
self.add_column("\u26A0", justify="right")
self.add_column("\u2716", justify="right")
self.add_column("\u26A0", f'{scan_totals.total_hard_to_maintain():n}', justify="right")
self.add_column("\u2716", f'{scan_totals.total_unmaintainable():n}', justify="right")
self._populate()

def _populate(self):
Expand Down

0 comments on commit 5ce902f

Please sign in to comment.