From 3196aa6e405d34a0e5dbeb819a5dc80c6f0a44ac Mon Sep 17 00:00:00 2001 From: 0x5c Date: Mon, 23 Dec 2019 21:29:50 -0500 Subject: [PATCH] Removed an unused f-string --- exts/weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exts/weather.py b/exts/weather.py index ec38443..978d057 100644 --- a/exts/weather.py +++ b/exts/weather.py @@ -86,7 +86,7 @@ See help for weather command for possible location types. Add a `-c` or `-f` to else: data = io.BytesIO(await resp.read()) embed.set_image(url=f'attachment://wttr_forecast.png') - await ctx.send(embed=embed, file=discord.File(data, f'wttr_forecast.png')) + await ctx.send(embed=embed, file=discord.File(data, 'wttr_forecast.png')) @_weather_conditions.command(name='now', aliases=['n'], category=cmn.cat.weather) async def _weather_conditions_now(self, ctx: commands.Context, *, location: str):