Skip to content

Commit f80124b

Browse files
authored
Use parameter name ("sep") in read_csv to comply to newer pandas version
1 parent ab26ad2 commit f80124b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_datareader/nasdaq_trader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def _download_nasdaq_symbols(timeout):
6969
with warnings.catch_warnings(record=True):
7070
data = read_csv(
7171
StringIO("\n".join(lines[:-1])),
72-
"|",
72+
sep="|",
7373
dtype=_TICKER_DTYPE,
7474
converters=converter_map,
7575
index_col=1,

0 commit comments

Comments
 (0)