summaryrefslogtreecommitdiff
path: root/logging_utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'logging_utils.py')
-rw-r--r--logging_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/logging_utils.py b/logging_utils.py
index 3fd2b84..8875b2f 100644
--- a/logging_utils.py
+++ b/logging_utils.py
@@ -223,8 +223,8 @@ class SquelchRepeatedMessagesFilter(logging.Filter):
"""
def __init__(self) -> None:
- self.counters: collections.Counter = collections.Counter()
super().__init__()
+ self.counters: collections.Counter = collections.Counter()
@overrides
def filter(self, record: logging.LogRecord) -> bool: