Skip to content

Commit 8b1efde

Browse files
author
Kelvin Lee
authored
Merge pull request #80 from Pennycook/percent-symbol
Fix double percent symbol in report output
2 parents 2500ea9 + 4b348e5 commit 8b1efde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codebasin/report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def summary(setmap):
113113
cd = divergence(setmap)
114114
unused = (setmap[frozenset()] / total_count) * 100.0
115115
lines += [f"Code Divergence: {cd:.2f}"]
116-
lines += [f"Unused Code (%%): {unused:.2f}"]
116+
lines += [f"Unused Code (%): {unused:.2f}"]
117117
lines += [f"Total SLOC: {total_count}"]
118118

119119
return "\n".join(lines)

0 commit comments

Comments
 (0)