diff --git a/cogs/helloworld_cog.py b/cogs/helloworld_cog.py index 02dc8fe..54a104c 100644 --- a/cogs/helloworld_cog.py +++ b/cogs/helloworld_cog.py @@ -1,14 +1,14 @@ import discord - from discord.ext import commands +from discord.ext import commands - class HelloWorldCog(commands.Cog): - def __init__(self, bot): - self.bot = bot +class HelloWorldCog(commands.Cog): + def __init__(self, bot): + self.bot = bot - @commands.command(name="helloworld") - async def helloworld(self, ctx): - """Responds with 'Hello World!'""" - await ctx.send("Hello World!") + @commands.command(name="helloworld") + async def helloworld(self, ctx): + """Responds with 'Hello World!'""" + await ctx.send("Hello World!") - async def setup(bot): - await bot.add_cog(HelloWorldCog(bot)) \ No newline at end of file +async def setup(bot): + await bot.add_cog(HelloWorldCog(bot)) \ No newline at end of file