summaryrefslogtreecommitdiffstats
path: root/tqdm/contrib/logging.py
diff options
context:
space:
mode:
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):