From 90b332d68b0497536c1405b80865d062a18678b3 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Mon, 10 Nov 2025 00:24:12 +0000 Subject: Disable Space cog loading temporarily Comment out the addition of Space cog due to NASA API issues. --- bot/exts/fun/space.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'bot/exts/fun/space.py') diff --git a/bot/exts/fun/space.py b/bot/exts/fun/space.py index f2c934bc..c896a37f 100644 --- a/bot/exts/fun/space.py +++ b/bot/exts/fun/space.py @@ -1,3 +1,5 @@ +# XXX: Disabled due to issues with NASA API, see https://github.com/python-discord/sir-lancebot/issues/1709 + import random from datetime import UTC, date, datetime from typing import Any @@ -231,4 +233,7 @@ async def setup(bot: Bot) -> None: logger.warning("Can't find NASA API key. Not loading Space Cog.") return - await bot.add_cog(Space(bot)) + # XXX: Disabled due to issues with NASA API, see https://github.com/python-discord/sir-lancebot/issues/1709 + + # await bot.add_cog(Space(bot)) + return -- cgit v1.2.3