Skip to content

Commit 7c0dcc7

Browse files
gfyoungalanbato
authored andcommitted
MAINT: Add missing space in parsers.pyx
"2< heuristic" --> "2 < heuristic"
1 parent 6165db4 commit 7c0dcc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/parsers.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ cdef class TextReader:
563563
# compute buffer_lines as function of table width
564564
heuristic = 2**20 // self.table_width
565565
self.buffer_lines = 1
566-
while self.buffer_lines * 2< heuristic:
566+
while self.buffer_lines * 2 < heuristic:
567567
self.buffer_lines *= 2
568568

569569
def __init__(self, *args, **kwargs):

0 commit comments

Comments
 (0)