diff options
author | redcreeper14385 <mounderfod@gmail.com> | 2021-08-31 17:42:29 +0100 |
---|---|---|
committer | redcreeper14385 <mounderfod@gmail.com> | 2021-08-31 17:42:29 +0100 |
commit | dd6bf2d89c669610fcb2387890ab747f893f0b91 (patch) | |
tree | 95cf6d18d279e0a326ab9a8acc786685607974aa /cogs | |
parent | 182580c3429d93e0d421bcfe32bc391842c946d5 (diff) | |
download | tiny-potato-bot-dd6bf2d89c669610fcb2387890ab747f893f0b91.tar.gz |
Rename some things
Diffstat (limited to 'cogs')
-rw-r--r-- | cogs/utils.py (renamed from cogs/about.py) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cogs/about.py b/cogs/utils.py index c9ed7e1..c06049b 100644 --- a/cogs/about.py +++ b/cogs/utils.py @@ -1,7 +1,7 @@ import discord from discord.ext import commands -class About(commands.Cog): +class Utils(commands.Cog): def __init__(self, bot): self.bot = bot @@ -18,4 +18,4 @@ class About(commands.Cog): await ctx.send(embed=embed) def setup(bot): - bot.add_cog(About(bot)) \ No newline at end of file + bot.add_cog(Utils(bot)) \ No newline at end of file |