Fix flake8 warning.
This commit is contained in:
parent
47544a11b6
commit
b8c4554298
1 changed files with 4 additions and 4 deletions
|
@ -313,10 +313,10 @@ class AlphaVantage(BaseSource):
|
||||||
|
|
||||||
normalized_data = {
|
normalized_data = {
|
||||||
day: {
|
day: {
|
||||||
"open": entries[f"1. open"],
|
"open": entries["1. open"],
|
||||||
"high": entries[f"2. high"],
|
"high": entries["2. high"],
|
||||||
"low": entries[f"3. low"],
|
"low": entries["3. low"],
|
||||||
"close": entries[f"4. close"],
|
"close": entries["4. close"],
|
||||||
}
|
}
|
||||||
for day, entries in reversed(
|
for day, entries in reversed(
|
||||||
data["Time Series (Digital Currency Daily)"].items()
|
data["Time Series (Digital Currency Daily)"].items()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue