Skip to content

Commit da9d4e6

Browse files
committed
Fix linting errors
1 parent 0755c64 commit da9d4e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/_libs/parsers.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1798,7 +1798,8 @@ cdef inline int _try_double_nogil(parser_t *parser,
17981798
data[0] = NA
17991799
else:
18001800
data[0] = double_converter(word, &p_end, parser.decimal,
1801-
parser.sci, parser.thousands, 1, &error)
1801+
parser.sci, parser.thousands,
1802+
1, &error)
18021803
if error != 0 or p_end == word or p_end[0]:
18031804
error = 0
18041805
if (strcasecmp(word, cinf) == 0 or
@@ -2079,7 +2080,6 @@ cdef kh_str_starts_t* kset_from_list(list values) except NULL:
20792080

20802081
table = kh_init_str_starts()
20812082

2082-
20832083
for i in range(len(values)):
20842084
val = values[i]
20852085

0 commit comments

Comments
 (0)