From 3a7c2ba9d3c22d88977ee29682f847240e614778 Mon Sep 17 00:00:00 2001 From: Interitio Date: Thu, 4 Sep 2025 03:31:59 +1000 Subject: [PATCH] (twitch): Fix koan display. --- koans/twitch/component.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koans/twitch/component.py b/koans/twitch/component.py index 44441b7..e32b34c 100644 --- a/koans/twitch/component.py +++ b/koans/twitch/component.py @@ -142,6 +142,6 @@ class KoanComponent(cmds.Component): await ctx.reply("This channel doesn't have any koans!") if koan: formatted = f"Koan #{koan.koanlabel}: {koan.content}" - parts = [formatted[i: i:500] for i in range(0, len(formatted), 500)] + parts = [formatted[i : i+500] for i in range(0, len(formatted), 500)] for part in parts: await ctx.reply(part)