Skip to content

Commit

Permalink
fix: Fills the stats line (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericblanc20 authored Jan 9, 2024
1 parent 8ee5421 commit f74bb70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chew/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,6 @@ def run(config: Config):
if getattr(stats, key, None) is None:
row.append("-")
else:
getattr(stats, key)
row.append(getattr(stats, key))

print("\t".join(map(str, row)), file=outputf)

0 comments on commit f74bb70

Please sign in to comment.