Skip to content

Commit 95ca3ae

Browse files
Untabify
1 parent bd26108 commit 95ca3ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/_libs/src/parser/tokenizer.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -1190,11 +1190,11 @@ int parser_consume_rows(parser_t *self, size_t nrows) {
11901190
/* cannot guarantee that nrows + 1 has been observed */
11911191
word_deletions = self->line_start[nrows - 1] + self->line_fields[nrows - 1];
11921192
if (word_deletions >= 1) {
1193-
char_count = (self->word_starts[word_deletions - 1] +
1194-
strlen(self->words[word_deletions - 1]) + 1);
1193+
char_count = (self->word_starts[word_deletions - 1] +
1194+
strlen(self->words[word_deletions - 1]) + 1);
11951195
}
11961196
else {
1197-
char_count = 1;
1197+
char_count = 1;
11981198
}
11991199

12001200
TRACE(("parser_consume_rows: Deleting %d words, %d chars\n", word_deletions,

0 commit comments

Comments
 (0)