mirror of
https://github.com/TotalFreedomMC/TotalFreedomBot.git
synced 2024-12-22 15:44:57 +00:00
Update help.py
This commit is contained in:
parent
f35422689b
commit
9cab9da5fc
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,8 @@
|
||||||
import math
|
import math
|
||||||
import discord
|
|
||||||
|
|
||||||
|
import discord
|
||||||
from discord.ext import commands
|
from discord.ext import commands
|
||||||
|
|
||||||
from functions import get_avatar
|
from functions import get_avatar
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,7 +16,6 @@ class Help(commands.Cog):
|
||||||
'Displays the help command'
|
'Displays the help command'
|
||||||
em = discord.Embed()
|
em = discord.Embed()
|
||||||
em.title = 'Help Command'
|
em.title = 'Help Command'
|
||||||
command_list = ''
|
|
||||||
cog_list = [c for c in self.bot.cogs.keys()]
|
cog_list = [c for c in self.bot.cogs.keys()]
|
||||||
page_count = math.ceil(len(cog_list) / 4)
|
page_count = math.ceil(len(cog_list) / 4)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue