summaryrefslogtreecommitdiff
path: root/logging_utils.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-02-02 23:37:32 -0800
committerScott <[email protected]>2022-02-02 23:37:32 -0800
commitb6dd2da4aecbc5d4690023d5a5e4f63052425444 (patch)
treefd265a5942a404a708f6cf3bd49c9a8789a5bf0e /logging_utils.py
parent53de665d1eb5a95333b2ef937a7045af8bfbe5e0 (diff)
Let's call the base class' c'tor first, eh?
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: