Skip to content

Commit

Permalink
fix: round #3
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsail committed Dec 3, 2024
1 parent e46ab2b commit aceb898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seastats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,6 @@ def get_stats(

if round > 0:
for metric in metrics:
stats[metric] = np.round(stats[metric])
stats[metric] = np.round(stats[metric], round)

return stats

0 comments on commit aceb898

Please sign in to comment.