Skip to content

Commit 7e8033d

Browse files
committed
fix: fix tuple error
1 parent ab2fab8 commit 7e8033d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/parsers.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1778,7 +1778,7 @@ cdef _try_uint64(parser_t *parser, int64_t col,
17781778
elif raise_on_float and error == ERROR_IS_FLOAT:
17791779
raise ValueError("Number is float")
17801780
elif not raise_on_float or error != ERROR_IS_FLOAT:
1781-
return None, None
1781+
return None
17821782

17831783
if uint64_conflict(&state):
17841784
raise ValueError("Cannot convert to numerical dtype")

0 commit comments

Comments
 (0)