Closed burnpanck closed 2 years ago
The following example highlights the issue:
import pint_pandas ureg = pint_pandas.PintType.ureg a = PintArray([1,2]*ureg.m, ureg.m) b = [1*ureg.km,1*ureg.m] c = a+b print(c.quantity) # will print "[1001.0 1002.0] meter" instead of "[1001.0 3.0] meter"
Closed with PR #87
The following example highlights the issue: