We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 150b55d commit c123a7eCopy full SHA for c123a7e
1 file changed
src/plaid/utils/stats.py
@@ -352,10 +352,7 @@ def merge_stats(self, other: Self) -> None:
352
Args:
353
other (Stats): Stats object to merge with
354
"""
355
- for name, stats in self._stats.items():
356
- print(f"=== self {name=} -> {stats.get_stats()=}")
357
for name, stats in other._stats.items():
358
- print(f"=== other {name=} -> {stats.get_stats()=}")
359
if name not in self._stats:
360
self._stats[name] = copy.deepcopy(stats)
361
else:
0 commit comments