skyeweave/atlasimagecomposer/utils/disables.py
Firq 3fde0f4f08
All checks were successful
/ mypy (push) Successful in 13s
/ pylint (push) Successful in 10s
/ release (push) Successful in 11s
/ lint-and-typing (push) Successful in 15s
/ build-artifacts (push) Successful in 7s
/ publish-artifacts (push) Successful in 8s
Added logging, added quiet flag
2024-10-14 20:23:09 +02:00

5 lines
149 B
Python

def disable_tqdm():
from tqdm import tqdm
from functools import partialmethod
tqdm.__init__ = partialmethod(tqdm.__init__, disable=True)