Skip to content

Commit c6e5bf6

Browse files
authored
MAINT: Add missing paren around print statement
Stray verbose print statement in parsers.pyx was bare without any parentheses.
1 parent 3ab56bd commit c6e5bf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pandas/_libs/parsers.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ cdef class TextReader:
10131013
cdef _end_clock(self, what):
10141014
if self.verbose:
10151015
elapsed = time.time() - self.clocks.pop(-1)
1016-
print '%s took: %.2f ms' % (what, elapsed * 1000)
1016+
print('%s took: %.2f ms' % (what, elapsed * 1000))
10171017

10181018
def set_noconvert(self, i):
10191019
self.noconvert.add(i)

0 commit comments

Comments
 (0)