summaryrefslogtreecommitdiffstats
path: root/tqdm/contrib/discord.py
diff options
context:
space:
mode:
Diffstat (limited to 'tqdm/contrib/discord.py')
-rw-r--r--tqdm/contrib/discord.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/tqdm/contrib/discord.py b/tqdm/contrib/discord.py
index 0edd35c..1e41308 100644
--- a/tqdm/contrib/discord.py
+++ b/tqdm/contrib/discord.py
@@ -6,10 +6,8 @@ Usage:
>>> for i in trange(10, token='{token}', channel_id='{channel_id}'):
... ...
-![screenshot](https://img.tqdm.ml/screenshot-discord.png)
+![screenshot](https://tqdm.github.io/img/screenshot-discord.png)
"""
-from __future__ import absolute_import
-
import logging
from os import getenv
@@ -19,7 +17,6 @@ except ImportError:
raise ImportError("Please `pip install disco-py`")
from ..auto import tqdm as tqdm_auto
-from ..utils import _range
from .utils_worker import MonoWorker
__author__ = {"github.com/": ["casperdcl"]}
@@ -113,11 +110,8 @@ class tqdm_discord(tqdm_auto):
def tdrange(*args, **kwargs):
- """
- A shortcut for `tqdm.contrib.discord.tqdm(xrange(*args), **kwargs)`.
- On Python3+, `range` is used instead of `xrange`.
- """
- return tqdm_discord(_range(*args), **kwargs)
+ """Shortcut for `tqdm.contrib.discord.tqdm(range(*args), **kwargs)`."""
+ return tqdm_discord(range(*args), **kwargs)
# Aliases