Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use_tqdm parameter uses tqdm when False #56

Open
sietseschroder opened this issue Nov 18, 2021 · 1 comment
Open

use_tqdm parameter uses tqdm when False #56

sietseschroder opened this issue Nov 18, 2021 · 1 comment

Comments

@sietseschroder
Copy link

Hi, it seems use_tqdm=False leads to the use of tqdm, while use_tqdm=True leads to no use of tqdm. In the source code:
tqdm(pos_list, disable=self.use_tqdm)
So use_tqdm=False means disable=False so enable is True...

@timsainb
Copy link
Owner

Thanks for pointing this out! disable=self.use_tqdm should be switched to disable=self.use_tqdm == False

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants