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