Skip to content

Commit be62972

Browse files
committed
Fix ScratchPoolManager::counter
1 parent 2f4a7d2 commit be62972

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonbpf/helper/helper_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self):
1818

1919
@property
2020
def counter(self):
21-
return sum(self._counter.values())
21+
return sum(self._counters.values())
2222

2323
def reset(self):
2424
self._counters.clear()

0 commit comments

Comments
 (0)