summaryrefslogtreecommitdiffstats
path: root/tqdm/contrib/logging.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 15:59:52 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 15:59:52 +0000
commita2eb45dc71bcd8ec656e4357e66e674e2c3fa17e (patch)
tree6874a3d60e42c8c0fd8bf7b201806e1a2ca32c24 /tqdm/contrib/logging.py
parentAdding upstream version 4.66.2. (diff)
downloadtqdm-upstream.tar.xz
tqdm-upstream.zip
Adding upstream version 4.66.4.upstream/4.66.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tqdm/contrib/logging.py')
-rw-r--r--tqdm/contrib/logging.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tqdm/contrib/logging.py b/tqdm/contrib/logging.py
index b8eaec5..e06febe 100644
--- a/tqdm/contrib/logging.py
+++ b/tqdm/contrib/logging.py
@@ -18,7 +18,7 @@ class _TqdmLoggingHandler(logging.StreamHandler):
self,
tqdm_class=std_tqdm # type: Type[std_tqdm]
):
- super(_TqdmLoggingHandler, self).__init__()
+ super().__init__()
self.tqdm_class = tqdm_class
def emit(self, record):