Skip to content

Commit c123a7e

Browse files
committed
(stats) remove prints
1 parent 150b55d commit c123a7e

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

src/plaid/utils/stats.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,10 +352,7 @@ def merge_stats(self, other: Self) -> None:
352352
Args:
353353
other (Stats): Stats object to merge with
354354
"""
355-
for name, stats in self._stats.items():
356-
print(f"=== self {name=} -> {stats.get_stats()=}")
357355
for name, stats in other._stats.items():
358-
print(f"=== other {name=} -> {stats.get_stats()=}")
359356
if name not in self._stats:
360357
self._stats[name] = copy.deepcopy(stats)
361358
else:

0 commit comments

Comments
 (0)