projects
/
python_utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53de665
)
Let's call the base class' c'tor first, eh?
author
Scott
<scott@wannabe.house>
Thu, 3 Feb 2022 07:37:32 +0000
(23:37 -0800)
committer
Scott
<scott@wannabe.house>
Thu, 3 Feb 2022 07:37:32 +0000
(23:37 -0800)
logging_utils.py
patch
|
blob
|
history
diff --git
a/logging_utils.py
b/logging_utils.py
index 3fd2b849a3dcc2d030de28e0abe6c70cb1d9fe02..8875b2fcb3d833f900c1107e7203abc27a49f54c 100644
(file)
--- 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: