Fix flake8 warning.

This commit is contained in:
Chris Berkhout 2024-07-11 16:25:30 +02:00
parent 47544a11b6
commit b8c4554298

View file

@ -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()