summaryrefslogtreecommitdiffstats
path: root/tqdm/dask.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/dask.py
parentAdding upstream version 4.66.2. (diff)
downloadtqdm-a2eb45dc71bcd8ec656e4357e66e674e2c3fa17e.tar.xz
tqdm-a2eb45dc71bcd8ec656e4357e66e674e2c3fa17e.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/dask.py')
-rw-r--r--tqdm/dask.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tqdm/dask.py b/tqdm/dask.py
index af9926a..57f1b66 100644
--- a/tqdm/dask.py
+++ b/tqdm/dask.py
@@ -20,7 +20,7 @@ class TqdmCallback(Callback):
tqdm_kwargs : optional
Any other arguments used for all bars.
"""
- super(TqdmCallback, self).__init__(start=start, pretask=pretask)
+ super().__init__(start=start, pretask=pretask)
if tqdm_kwargs:
tqdm_class = partial(tqdm_class, **tqdm_kwargs)
self.tqdm_class = tqdm_class