SamarthPujari commited on
Commit
abd8cf6
·
verified ·
1 Parent(s): a436792

Added New Tool

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def get_current_weather(place: str)-> str: #it's import to specify the return ty
19
  url = "https://api.openweathermap.org/data/2.5/weather"
20
  params = {
21
  "city": place
22
- "api_id": api_key
23
  "units": "metric"
24
  }
25
 
 
19
  url = "https://api.openweathermap.org/data/2.5/weather"
20
  params = {
21
  "city": place
22
+ "appid": api_key
23
  "units": "metric"
24
  }
25