diff options
Diffstat (limited to '')
-rw-r--r-- | cogs/utils.py (renamed from cogs/util.py) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cogs/util.py b/cogs/utils.py index 3b87d0b..ac7ec95 100644 --- a/cogs/util.py +++ b/cogs/utils.py @@ -2,7 +2,7 @@ from discord.ext import commands import discord import asyncio -class Util(commands.Cog): +class Utils(commands.Cog): def __init__(self, bot): self.bot = bot @@ -11,5 +11,5 @@ class Util(commands.Cog): await ctx.send(f'Pong! {round(self.bot.latency*1000)}ms') def setup(bot): - bot.add_cog(Util(bot)) + bot.add_cog(Utils(bot)) |