kenza-ily commited on
Commit
f3c1c38
·
verified ·
1 Parent(s): 61e32ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -12,9 +12,11 @@ from Gradio_UI import GradioUI
12
 
13
  # import meterostat
14
 
15
- def get_weather(city) -> None:
16
- # declare the client. the measuring unit used defaults to the metric system (celcius, km/h, etc.)
17
- return "Temps de merde"
 
 
18
 
19
 
20
  # =============== TOOLS
 
12
 
13
  # import meterostat
14
 
15
+ def get_weather(city:str) -> str:
16
+ """
17
+ Give current weather in city
18
+ """
19
+ return "Temps de merde"
20
 
21
 
22
  # =============== TOOLS