summaryrefslogtreecommitdiffstats
path: root/tqdm/rich.py
diff options
context:
space:
mode:
Diffstat (limited to 'tqdm/rich.py')
-rw-r--r--tqdm/rich.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/tqdm/rich.py b/tqdm/rich.py
index 69893ff..00e1ddf 100644
--- a/tqdm/rich.py
+++ b/tqdm/rich.py
@@ -6,8 +6,6 @@ Usage:
>>> for i in trange(10):
... ...
"""
-from __future__ import absolute_import
-
from warnings import warn
from rich.progress import (
@@ -15,7 +13,6 @@ from rich.progress import (
from .std import TqdmExperimentalWarning
from .std import tqdm as std_tqdm
-from .utils import _range
__author__ = {"github.com/": ["casperdcl"]}
__all__ = ['tqdm_rich', 'trrange', 'tqdm', 'trange']
@@ -144,11 +141,8 @@ class tqdm_rich(std_tqdm): # pragma: no cover
def trrange(*args, **kwargs):
- """
- A shortcut for `tqdm.rich.tqdm(xrange(*args), **kwargs)`.
- On Python3+, `range` is used instead of `xrange`.
- """
- return tqdm_rich(_range(*args), **kwargs)
+ """Shortcut for `tqdm.rich.tqdm(range(*args), **kwargs)`."""
+ return tqdm_rich(range(*args), **kwargs)
# Aliases