Skip to content

Commit d74e48f

Browse files
authored
Merge pull request #967 from Radon23/main
Changed positional arguments to keyword arguments due to errors regar…
2 parents 9c33f2a + 7bd2d6c commit d74e48f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas_datareader/tiingo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def read(self):
129129
dfs.append(self._read_one_data(self.url, self.params))
130130
finally:
131131
self.close()
132-
return pd.concat(dfs, self._concat_axis)
132+
return pd.concat(dfs, axis=self._concat_axis)
133133

134134

135135
class TiingoDailyReader(_BaseReader):
@@ -231,7 +231,7 @@ def read(self):
231231
dfs.append(self._read_one_data(self.url, self.params))
232232
finally:
233233
self.close()
234-
return pd.concat(dfs, self._concat_axis)
234+
return pd.concat(dfs, axis=self._concat_axis)
235235

236236

237237
class TiingoMetaDataReader(TiingoDailyReader):

0 commit comments

Comments
 (0)