From 202ed158fbbb9a1351c6d3bbf9cc8ec28000e5a1 Mon Sep 17 00:00:00 2001 From: dkay Date: Sun, 19 Apr 2026 01:35:32 -0700 Subject: [PATCH 1/2] Fix cat API error string and sort imports --- techsupport_bot/commands/animal.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/techsupport_bot/commands/animal.py b/techsupport_bot/commands/animal.py index 9062b583..9e4a3249 100644 --- a/techsupport_bot/commands/animal.py +++ b/techsupport_bot/commands/animal.py @@ -4,9 +4,10 @@ from typing import TYPE_CHECKING, Self -from core import auxiliary, cogs from discord.ext import commands +from core import auxiliary, cogs + if TYPE_CHECKING: import bot @@ -46,7 +47,7 @@ async def cat(self: Self, ctx: commands.Context) -> None: """ if not self.bot.file_config.api.api_keys.cat: embed = auxiliary.prepare_deny_embed( - "No cat API has been set, so not cat can be shown" + "No cat API key has been set, so not cat can be shown" ) await ctx.send(embed=embed) return From 2d52ac1ffdc0ab2a876eddccc054ac752fe9fe33 Mon Sep 17 00:00:00 2001 From: dkay Date: Sun, 19 Apr 2026 01:48:32 -0700 Subject: [PATCH 2/2] undo formatting --- techsupport_bot/commands/animal.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/techsupport_bot/commands/animal.py b/techsupport_bot/commands/animal.py index 9e4a3249..2765b1fd 100644 --- a/techsupport_bot/commands/animal.py +++ b/techsupport_bot/commands/animal.py @@ -4,9 +4,8 @@ from typing import TYPE_CHECKING, Self -from discord.ext import commands - from core import auxiliary, cogs +from discord.ext import commands if TYPE_CHECKING: import bot