This commit is contained in:
deflax 2024-01-16 18:45:24 +02:00
parent 0c77af932b
commit 20eb7095d2

View file

@ -41,7 +41,7 @@ async def epg(ctx):
if requests.get(db_url).status_code == 200:
response = requests.get(db_url)
response.raise_for_status()
content = response.json
content = response.json()
await ctx.channel.send('epg:')
await ctx.channel.send(type(content))
await ctx.channel.send(f'`{content}`')