1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 21:02:38 +00:00

WIP testing for help command

This commit is contained in:
Myned 2017-10-15 01:34:52 -04:00
parent 85f7fc9430
commit 0b6b964504

View file

@ -1,10 +1,11 @@
import asyncio
import traceback as tb
import discord
import discord as d
from discord.ext import commands
from misc import exceptions as exc
from utils import utils as u
class Info:
@ -12,8 +13,17 @@ class Info:
def __init__(self, bot):
self.bot = bot
# @commands.command(name='helptest', aliases=['h'], hidden=True)
# async def list_commands(self, ctx):
# embed = d.Embed(title='All possible commands:', color=ctx.me.color)
# embed.set_author(name=ctx.me.display_name, icon_url=ctx.me.avatar_url)
# embed.add_field(
# name='Booru', value='\n{}bl umbrella command for managing blacklists'.format(u.config['prefix']))
#
# await ctx.send(embed=embed)
@commands.command(hidden=True)
async def hi(ctx):
async def hi(self, ctx):
user = ctx.author
hello = 'Hewwo, {}.'.format(user.mention)