We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40e85ab commit 2551269Copy full SHA for 2551269
pandas_datareader/tiingo.py
@@ -129,7 +129,7 @@ def read(self):
129
dfs.append(self._read_one_data(self.url, self.params))
130
finally:
131
self.close()
132
- return pd.concat(objs = dfs, axis = self._concat_axis)
+ return pd.concat(dfs, axis=self._concat_axis)
133
134
135
class TiingoDailyReader(_BaseReader):
@@ -231,7 +231,7 @@ def read(self):
231
232
233
234
- return pd.concat(objs= dfs, axis = self._concat_axis)
235
236
237
class TiingoMetaDataReader(TiingoDailyReader):
0 commit comments