disable empty db check

This commit is contained in:
deflax 2024-01-16 18:38:56 +02:00
parent cb0ee37d91
commit 76347bfc48

View file

@ -44,7 +44,6 @@ async def epg(ctx):
content = response.text content = response.text
await ctx.channel.send('epg:') await ctx.channel.send('epg:')
if content != {}:
for item in content: for item in content:
if item['start_at'] == 'now' or item['start_at'] == 'never': if item['start_at'] == 'now' or item['start_at'] == 'never':
await ctx.channel.send('x') await ctx.channel.send('x')
@ -52,8 +51,6 @@ async def epg(ctx):
else: else:
await ctx.channel.send('y') await ctx.channel.send('y')
await ctx.channel.send(item['start_at']) await ctx.channel.send(item['start_at'])
else:
await ctx.channel.send('Empty database!')
except Exception as e: except Exception as e:
print(e) print(e)