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
The FixedIncrements constraint fails to apply to new numerical data types (Int, UInt) due to a TypeError: unsupported operand type(s) for &: 'bool' and 'float'. This error originates from RDT’s FloatFormatter. However it has to do with the following line:
This line changes the dtype of the column, therefore this is no longer UInt or Int, it gets converted to a float dtype because of the division being applied.
Error Description
The
FixedIncrements
constraint fails to apply to new numerical data types (Int, UInt) due to aTypeError: unsupported operand type(s) for &: 'bool' and 'float'
. This error originates from RDT’sFloatFormatter
. However it has to do with the following line:This line changes the
dtype
of the column, therefore this is no longerUInt
orInt
, it gets converted to afloat
dtype because of the division being applied.Steps to reproduce
Additional Context
If this can't be fixed directly here, file a new issue pointing to this one in RDT and apply any fixes required there.
The text was updated successfully, but these errors were encountered: