Last active
March 5, 2023 05:35
-
-
Save 34j/8e72f61f008eb9b27a2545be6d679781 to your computer and use it in GitHub Desktop.
Always use tqdm.rich, tqdm.gui, tqdm.tk instead of tqdm.std without changing the original code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from tqdm.rich import tqdm | |
| # sys.modules['tqdm'].__dict__["tqdm"] = tqdm | |
| sys.modules["tqdm.std"].__dict__["tqdm"] = tqdm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment