Fix ScratchPoolManager::counter

This commit is contained in:
Pragyansh Chaturvedi
2025-11-07 19:00:57 +05:30
parent 2f4a7d2f90
commit be62972974

View File

@ -18,7 +18,7 @@ class ScratchPoolManager:
@property
def counter(self):
return sum(self._counter.values())
return sum(self._counters.values())
def reset(self):
self._counters.clear()