Skip to content

Commit 9a50a61

Browse files
committed
BUG: Correct concat
1 parent 94a7d37 commit 9a50a61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_datareader/moex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def read(self):
214214
for secid in list(set(b["SECID"].tolist())):
215215
part = b[b["BOARDID"] == boards[secid]]
216216
parts.append(part)
217-
result = pd.concat(parts)
217+
result = pd.concat(parts, axis=0)
218218
result = result.drop_duplicates()
219219
return result
220220

0 commit comments

Comments
 (0)