Skip to content

Commit 0511a82

Browse files
authored
Correct JSON response handling in price tracker
Fix incorrect variable reference for JSON response.
1 parent 2218d84 commit 0511a82

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

web_programming/crypto_price_tracker.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ def crypto_price(coin: str = "bitcoin") -> float:
2424
url = f"https://api.coingecko.com/api/v3/simple/price?ids={coin}&vs_currencies=usd"
2525
try:
2626
json_response = httpx2.get(url, timeout=10).raise_for_status().json()
27-
return float(response.json().get(coin, {}).get("usd", 0.0))
2827
except httpx2.RequestError, ValueError, KeyError:
2928
return 0.0
3029
return float(json_response.get(coin, {}).get("usd", 0.0))

0 commit comments

Comments
 (0)