From fff8cc8fa602402b3d46c0d394f362a7338c18cc Mon Sep 17 00:00:00 2001 From: stef-devs Date: Sat, 18 Jun 2022 12:07:40 +0200 Subject: [PATCH] Removeprint test for meteo --- index.py | 1 - 1 file changed, 1 deletion(-) diff --git a/index.py b/index.py index c2a8805..069576b 100644 --- a/index.py +++ b/index.py @@ -98,7 +98,6 @@ def meteo_step(message): city = message.text token_weather = os.environ.get('WEATHER_TOKEN') response = requests.get("https://api.openweathermap.org/data/2.5/weather?q="+city+",it&APPID="+token_weather).json() - print(response) weather = response['weather'][0]['main'] temp = response['main']['temp'] temp = temp - 273.15