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
from sciform import Formatter, FormatOptions
sform = Formatter(FormatOptions(pdg_sig_figs=True))
print(sform(123, 0))
erroneously results in '120 +/- 0'. The value is erroneously rounded according to pdg sig fig rules, but these rules should only apply t the uncertainty. In this case, the value should be rounded according to the AutoDigits rules.
The text was updated successfully, but these errors were encountered:
erroneously results in
'120 +/- 0'
. The value is erroneously rounded according to pdg sig fig rules, but these rules should only apply t the uncertainty. In this case, the value should be rounded according to theAutoDigits
rules.The text was updated successfully, but these errors were encountered: