We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
#621 introduced a bug (-0.123 -> -.123):
-0.123
-.123
>>> from tqdm import tqdm >>> tqdm.format_num(0.0000012345) '1.23e-6' # ok >>> tqdm.format_num(-0.1234) '-.123' # bug
spotted by @MargaretDuff in TomographicImaging/CIL#1659 :)
The text was updated successfully, but these errors were encountered:
Algorithm.run(callbacks: list[Callback])
fix format_num
d2a8585
- fixes #1548
5eb7e3f
b38a922
casperdcl
Successfully merging a pull request may close this issue.
#621 introduced a bug (
-0.123
->-.123
):spotted by @MargaretDuff in TomographicImaging/CIL#1659 :)
The text was updated successfully, but these errors were encountered: