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
When updating the column units from "NaN" to "" (dimensionless), one will get the ValueError: "Can't convert NaN to for {path}".
The reason is that ureg.Unit(u) can't take "NaN" as value.
Add a u.lower() != "nan" would address it.
The text was updated successfully, but these errors were encountered:
MPContribs/mpcontribs-client/mpcontribs/client/__init__.py
Line 1526 in 13c97a5
When updating the column units from "NaN" to "" (dimensionless), one will get the
ValueError: "Can't convert NaN to for {path}".
The reason is that
ureg.Unit(u)
can't take "NaN" as value.Add a
u.lower() != "nan"
would address it.The text was updated successfully, but these errors were encountered: