From 812a76d7e2b93773997f1e4670af89b6fd3ea441 Mon Sep 17 00:00:00 2001 From: Lemon Rose Date: Wed, 25 Oct 2023 22:56:58 +0530 Subject: [PATCH] [Captcha] fix it later --- captcha/core.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/captcha/core.py b/captcha/core.py index 10d478be..89168460 100644 --- a/captcha/core.py +++ b/captcha/core.py @@ -100,10 +100,6 @@ def __init__(self, bot: Red) -> None: self.task: asyncio.Task = asyncio.create_task(self._initialize()) - for k, v in {"captcha": lambda x: self, "captchaobj": captcha_object}.items(): - with suppress(RuntimeError): - self.bot.add_dev_env_value(k, v) - def format_help_for_context(self, ctx: commands.Context) -> str: pre_processed = super().format_help_for_context(ctx) or "" n = "\n" if "\n\n" not in pre_processed else ""