Skip to content

Commit

Permalink
Correct minor issue in print function
Browse files Browse the repository at this point in the history
  • Loading branch information
vmarandon committed Sep 8, 2023
1 parent b019375 commit 959d4e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nectarchain/utils/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def __str__(self):
infos += f"min: {self.min}" + "\n"
infos += f"max: {self.max}" + "\n"
infos += f"count: {self.count}" + "\n"
infos += f"shape: {self.shape}" + "\n"
infos += f"shape: {self.shape}"
return infos

def __repr__(self):
Expand Down

0 comments on commit 959d4e9

Please sign in to comment.