fix weather error msg
All checks were successful
Garfbot CI/CD Deployment / Deploy (push) Successful in 16s

This commit is contained in:
2025-06-07 21:12:57 -05:00
parent 8c08eed842
commit b14261a8d4

View File

@ -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):