Skip to content

Commit 2551269

Browse files
authored
STY: Fix lint issues
1 parent 40e85ab commit 2551269

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(objs = dfs, axis = 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(objs= dfs, axis = self._concat_axis)
234+
return pd.concat(dfs, axis=self._concat_axis)
235235

236236

237237
class TiingoMetaDataReader(TiingoDailyReader):

0 commit comments

Comments
 (0)