We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6165db4 commit 7c0dcc7Copy full SHA for 7c0dcc7
pandas/_libs/parsers.pyx
@@ -563,7 +563,7 @@ cdef class TextReader:
563
# compute buffer_lines as function of table width
564
heuristic = 2**20 // self.table_width
565
self.buffer_lines = 1
566
- while self.buffer_lines * 2< heuristic:
+ while self.buffer_lines * 2 < heuristic:
567
self.buffer_lines *= 2
568
569
def __init__(self, *args, **kwargs):
0 commit comments