You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We should replace the print calls when verbose=True in scans with tqdm from the tqdm library. Alternatively, we make it the default and find a way to mute the library's prints.
Describe the solution you'd like
verbose=True# or Falseforitintqdm(range(n_iters), disable=notverbose):
... # run scans
Additional context
Our verbosity options are currently very rudimentary and tqdm is one of the most used Python libraries.
The text was updated successfully, but these errors were encountered:
I would make sure to check in with some other people on what are the tools they're using for logging, as I know some people did some research on that and would be good to make it consistent across the codebase.
Is your feature request related to a problem? Please describe.
We should replace the
print
calls whenverbose=True
in scans withtqdm
from thetqdm
library. Alternatively, we make it the default and find a way to mute the library's prints.Describe the solution you'd like
Additional context
Our verbosity options are currently very rudimentary and
tqdm
is one of the most used Python libraries.The text was updated successfully, but these errors were encountered: