Skip to content

Commit c667aa1

Browse files
committed
CLN #6589 remove print statements when sep=None is passed to read_csv
Simply removed unneceesary print.
1 parent 66611ee commit c667aa1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pandas/io/parsers.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,6 @@ def _clean_options(self, options, engine):
535535

536536
if sep is None and not delim_whitespace:
537537
if engine == 'c':
538-
print('Using Python parser to sniff delimiter')
539538
engine = 'python'
540539
elif sep is not None and len(sep) > 1:
541540
# wait until regex engine integrated

0 commit comments

Comments
 (0)