Parcourir la source

Fixing setup function indentation in promotion.py.

BaumSplitter41 il y a 4 mois
Parent
commit
6acc6758d7
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      VPD_BOT/cogs/promotion.py

+ 2 - 2
VPD_BOT/cogs/promotion.py

@@ -69,5 +69,5 @@ class promotion(commands.Cog):
         await user.add_roles(new_rank)
         await ctx.respond(f"{user.mention} has been promoted to {new_rank.name}!", ephemeral=True)
 
-    def setup(bot: discord.Bot):
-        bot.add_cog(promotion(bot))
+def setup(bot: discord.Bot):
+    bot.add_cog(promotion(bot))