From e75aa2d23409c2d4607dfbc811c704e67dfb9eb0 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Sat, 31 May 2025 19:01:49 -0600 Subject: [PATCH] style: Fix indentation in HelloWorldCog for consistency --- cogs/helloworld_cog.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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