Skip to content

Commit

Permalink
MAINT: Add missing space in parsers.pyx
Browse files Browse the repository at this point in the history
"2< heuristic" --> "2 < heuristic"
  • Loading branch information
gfyoung authored and jowens committed Sep 20, 2017
1 parent 359890f commit 3fd2612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/_libs/parsers.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ cdef class TextReader:
# compute buffer_lines as function of table width
heuristic = 2**20 // self.table_width
self.buffer_lines = 1
while self.buffer_lines * 2< heuristic:
while self.buffer_lines * 2 < heuristic:
self.buffer_lines *= 2

def __init__(self, *args, **kwargs):
Expand Down

0 comments on commit 3fd2612

Please sign in to comment.