Some small improvements

This commit is contained in:
Marco Thomas
2020-10-08 10:05:58 +02:00
parent 24c416a80b
commit 4a5933729b
12 changed files with 48 additions and 71 deletions

View File

@@ -2,19 +2,16 @@
Some help for the users
"""
# IMPORTS - external
import discord
from discord.ext import commands
# IMPORTS - internal
from __main__ import PREFIX
# COG INIT
class Help(commands.Cog):
def __init__(self, bot):
self.bot = bot
# COG BODY
@commands.command(name="aquabot")
async def aquabot(self, ctx):
"""
@@ -33,6 +30,5 @@ class Help(commands.Cog):
await ctx.send(embed=embed)
# COG ENDING
def setup(bot):
bot.add_cog(Help(bot))