From b14261a8d42b02a2ad5c9b9c8b84be2f81c37b86 Mon Sep 17 00:00:00 2001 From: crate Date: Sat, 7 Jun 2025 21:12:57 -0500 Subject: [PATCH] fix weather error msg --- garfpy/weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garfpy/weather.py b/garfpy/weather.py index 4927a19..1d07024 100644 --- a/garfpy/weather.py +++ b/garfpy/weather.py @@ -126,7 +126,7 @@ class WeatherAPI: return await response.json() except aiohttp.ClientError as e: logger.error(f"Error fetching weather data for '{location}': {e}") - ctx.send(f"`Error fetching weather data for '{location}': {e}`") + await ctx.send(f"`Error fetching weather data for '{location}': {e}`") return None def weather_embed(self, weather_data):