diff options
| author | 2025-11-10 00:24:12 +0000 | |
|---|---|---|
| committer | 2025-11-10 00:24:12 +0000 | |
| commit | 90b332d68b0497536c1405b80865d062a18678b3 (patch) | |
| tree | ab618af30fb95b25d7038aae0633b078012fba0b /bot/exts/fun/space.py | |
| parent | Add `http` as additional alias for `http_status` (#1708) (diff) | |
Disable Space cog loading temporarily
Comment out the addition of Space cog due to NASA API issues.
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/fun/space.py | 7 |
1 files changed, 6 insertions, 1 deletions
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 |