summaryrefslogtreecommitdiffstats
path: root/tqdm/std.py
diff options
context:
space:
mode:
Diffstat (limited to 'tqdm/std.py')
-rw-r--r--tqdm/std.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tqdm/std.py b/tqdm/std.py
index e58fdca..e91ad30 100644
--- a/tqdm/std.py
+++ b/tqdm/std.py
@@ -46,7 +46,7 @@ class TqdmWarning(Warning):
if fp_write is not None:
fp_write("\n" + self.__class__.__name__ + ": " + str(msg).rstrip() + '\n')
else:
- super(TqdmWarning, self).__init__(msg, *a, **k)
+ super().__init__(msg, *a, **k)
class TqdmExperimentalWarning(TqdmWarning, FutureWarning):