Skip to content

Commit 230b628

Browse files
committed
1 parent cb5bc78 commit 230b628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyexcel_io/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def throw_exception(value):
198198

199199

200200
def ods_float_value(value):
201-
if value > constants.MAX_INTEGER:
201+
if int(value) > int(constants.MAX_INTEGER):
202202
raise exceptions.IntegerAccuracyLossError("%s is too big" % value)
203203
return value
204204

0 commit comments

Comments
 (0)