remove epg print

This commit is contained in:
deflax 2024-01-17 06:11:59 +02:00
parent a672b0a3a8
commit 220795a6fb

View file

@ -50,7 +50,6 @@ async def hello(ctx):
@bot.command(name='epg') @bot.command(name='epg')
async def epg(ctx): async def epg(ctx):
global database global database
await ctx.channel.send('epg:')
if database != {}: if database != {}:
scheduled_list = "" scheduled_list = ""
live_list = "" live_list = ""
@ -65,7 +64,7 @@ async def epg(ctx):
if live_list != "": if live_list != "":
await ctx.channel.send(f'```{live_list}```') await ctx.channel.send(f'```{live_list}```')
else: else:
await ctx.channel.send('```Empty database!```') await ctx.channel.send('```Empty.```')
@bot.command(name='time') @bot.command(name='time')
async def time(ctx): async def time(ctx):