pydata / pandas-datareader

Extract data from a wide range of Internet sources into a pandas DataFrame.

Home Page:https://pydata.github.io/pandas-datareader/stable/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Line 234 of tiingo.py needs to be updated according to new pandas update

mo-atiff opened this issue · comments

commented

Current line : return pd.concat(dfs, self._concat_axis)
According to new pandas update it says we need to specify any Series or data-frame objects with the keyword 'objs' as a parameter
Update to : return pd.concat(objs=dfs, axis=self._concat_axis)