Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > e4186ff0558883bdc7596fa53af2c9e4 > files > 54

python3-tqdm-4.29.1-1.mga7.noarch.rpm

# How to import tqdm without enforcing it as a dependency
try:
    from tqdm import tqdm
except ImportError:

    def tqdm(*args, **kwargs):
        if args:
            return args[0]
        return kwargs.get('iterable', None)