diff --git a/animals/core.py b/animals/core.py index d22724c6..5f555c07 100644 --- a/animals/core.py +++ b/animals/core.py @@ -111,7 +111,7 @@ async def _cat(self, ctx: commands.Context, *, breed: Optional[str] = None): image, name, details = await CatAPI(ctx, self.session).image(breed) # type: ignore except TypeError: await ctx.send( - f"The bot owner has not setup the random cats api key yet!", + "The bot owner has not setup the random cats api key yet!", reference=ctx.message.to_reference(fail_if_not_exists=False), ) return @@ -120,7 +120,7 @@ async def _cat(self, ctx: commands.Context, *, breed: Optional[str] = None): embeds=[ discord.Embed( description=( - "Invalid breed, use the `{ctx.clean_prefix}cat breeds` " + f"Invalid breed, use the `{ctx.clean_prefix}cat breeds` " "command for the valid breeds." ), color=await ctx.embed_color(), @@ -151,7 +151,7 @@ async def _cat_breeds(self, ctx: commands.Context): pages, breed_count = await CatAPI(ctx, self.session).breeds() # type: ignore except TypeError: await ctx.send( - f"The bot owner has not setup the random cats api key yet!", + "The bot owner has not setup the random cats api key yet!", reference=ctx.message.to_reference(fail_if_not_exists=False), ) return @@ -200,7 +200,7 @@ async def _dog(self, ctx: commands.Context, *, breed: Optional[str] = None): image, name, details = await DogAPI(ctx, self.session).image(breed) # type: ignore except TypeError: await ctx.send( - f"The bot owner has not setup the random dogs api key yet!", + "The bot owner has not setup the random dogs api key yet!", reference=ctx.message.to_reference(fail_if_not_exists=False), ) return @@ -240,7 +240,7 @@ async def _dog_breeds(self, ctx: commands.Context): pages, breed_count = await DogAPI(ctx, self.session).breeds() # type: ignore except TypeError: await ctx.send( - f"The bot owner has not setup the random dogs api key yet!", + "The bot owner has not setup the random dogs api key yet!", reference=ctx.message.to_reference(fail_if_not_exists=False), ) return