From daeb0afe61b96f3a641bcb6d109183be2ef1c1bb Mon Sep 17 00:00:00 2001 From: kittenswolf Date: Mon, 28 Mar 2022 04:27:10 +0200 Subject: [PATCH] Add missing space in task example --- docs/ext/tasks/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ext/tasks/index.rst b/docs/ext/tasks/index.rst index 8f90a87dc..484d79620 100644 --- a/docs/ext/tasks/index.rst +++ b/docs/ext/tasks/index.rst @@ -108,7 +108,7 @@ Doing something during cancellation: class MyCog(commands.Cog): def __init__(self, bot): - self.bot= bot + self.bot = bot self._batch = [] self.lock = asyncio.Lock() self.bulker.start()