Skip to content

Commit eb55ea6

Browse files
committed
black formatting on quotes
1 parent 7dc25c4 commit eb55ea6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_datareader/yahoo/daily.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def _read_one_data(self, url, params):
199199
def split_ratio(row):
200200
if float(row["Numerator"]) > 0:
201201
if ":" in row["Splitratio"]:
202-
n, m = row["Splitratio"].split(':')
202+
n, m = row["Splitratio"].split(":")
203203
return float(m) / float(n)
204204
else:
205205
return eval(row["Splitratio"])

0 commit comments

Comments
 (0)