diff options
| author | Scott <[email protected]> | 2022-02-02 23:37:32 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-02-02 23:37:32 -0800 |
| commit | b6dd2da4aecbc5d4690023d5a5e4f63052425444 (patch) | |
| tree | fd265a5942a404a708f6cf3bd49c9a8789a5bf0e | |
| parent | 53de665d1eb5a95333b2ef937a7045af8bfbe5e0 (diff) | |
Let's call the base class' c'tor first, eh?
| -rw-r--r-- | logging_utils.py | 2 |
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: |
