diff options
author | 2021-02-01 05:21:32 +0530 | |
---|---|---|
committer | 2021-02-01 05:21:32 +0530 | |
commit | c87f6e0561bbeb6510292a0b09a829aa6fa290a7 (patch) | |
tree | 05e733ca97920b1e563a5aab39abd5740997ba3e | |
parent | Remove unused imports (diff) |
rename the cog to HTTPStatusCodes
-rw-r--r-- | bot/exts/evergreen/status_codes.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bot/exts/evergreen/status_codes.py b/bot/exts/evergreen/status_codes.py index 473e778c..19375657 100644 --- a/bot/exts/evergreen/status_codes.py +++ b/bot/exts/evergreen/status_codes.py @@ -4,7 +4,7 @@ import discord from discord.ext import commands -class StatusCats(commands.Cog): +class HTTPStatusCodes(commands.Cog): """Commands that give HTTP statuses described and visualized by cats and dogs.""" def __init__(self, bot: commands.Bot): @@ -57,5 +57,5 @@ class StatusCats(commands.Cog): def setup(bot: commands.Bot) -> None: - """Load the StatusCats cog.""" - bot.add_cog(StatusCats(bot)) + """Load the HTTPStatusCodes cog.""" + bot.add_cog(HTTPStatusCodes(bot)) |