From 959d4e9d797bcb8946ba570412e059c85d8648b3 Mon Sep 17 00:00:00 2001 From: Vincent Marandon Date: Sat, 9 Sep 2023 00:02:38 +0200 Subject: [PATCH] Correct minor issue in print function --- src/nectarchain/utils/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nectarchain/utils/stats.py b/src/nectarchain/utils/stats.py index 89fde212..e0b03a6b 100644 --- a/src/nectarchain/utils/stats.py +++ b/src/nectarchain/utils/stats.py @@ -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):