From 20eb7095d2be18363d889e78a6b989bae2bac676 Mon Sep 17 00:00:00 2001 From: deflax Date: Tue, 16 Jan 2024 18:45:24 +0200 Subject: [PATCH] test --- src/discordbot/discordbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/discordbot/discordbot.py b/src/discordbot/discordbot.py index 09a91cf..8751596 100644 --- a/src/discordbot/discordbot.py +++ b/src/discordbot/discordbot.py @@ -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}`')