diff --git a/plugins/weather.py b/plugins/weather.py index bb78eac..1ab3900 100644 --- a/plugins/weather.py +++ b/plugins/weather.py @@ -92,12 +92,7 @@ async def handle_command(room, message, bot, prefix, config): # Format the weather message weather_message = f""" -{weather_emoji} Weather for {city_name}, {country}
-Condition: {description}
-Temperature: {temp:.1f}°C ({temp_f:.1f}°F)
-Feels like: {feels_like:.1f}°C ({feels_like_f:.1f}°F)
-Humidity: {humidity}%
-Wind Speed: {wind_speed} m/s +[{weather_emoji} Weather for {city_name}, {country}]: Condition: {description} | Temperature: {temp:.1f}°C ({temp_f:.1f}°F) | Feels like: {feels_like:.1f}°C ({feels_like_f:.1f}°F) | Humidity: {humidity}% | Wind Speed: {wind_speed} m/s """.strip() await bot.api.send_markdown_message(room.room_id, weather_message)