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
In version 0.5.0 I'm getting KeyError exceptions in Worksheet.py on line 143 for any cell with a decimal.Decimal value.
I tracked the error back to line 21 of DataTypes.py. Because Decimal values aren't being identified as DataTypes.NUMBER or any other type, they are never added to cell_cache. Thus the exceptions.
Importing the decimal module and changing line 21 of DataTypes.py to
In version 0.5.0 I'm getting KeyError exceptions in Worksheet.py on line 143 for any cell with a decimal.Decimal value.
I tracked the error back to line 21 of DataTypes.py. Because Decimal values aren't being identified as DataTypes.NUMBER or any other type, they are never added to cell_cache. Thus the exceptions.
Importing the decimal module and changing line 21 of DataTypes.py to
fixes the problem.
The text was updated successfully, but these errors were encountered: