Skip to content

Commit 9c33f2a

Browse files
authored
Merge pull request #968 from FidoDido1982/main
Use parameter name ("sep") in read_csv to comply to newer pandas version
2 parents ab26ad2 + f80124b commit 9c33f2a

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)