Skip to content

Commit 90b332d

Browse files
authored
Disable Space cog loading temporarily
Comment out the addition of Space cog due to NASA API issues.
1 parent 73eca6c commit 90b332d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bot/exts/fun/space.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# XXX: Disabled due to issues with NASA API, see https://github.com/python-discord/sir-lancebot/issues/1709
2+
13
import random
24
from datetime import UTC, date, datetime
35
from typing import Any
@@ -231,4 +233,7 @@ async def setup(bot: Bot) -> None:
231233
logger.warning("Can't find NASA API key. Not loading Space Cog.")
232234
return
233235

234-
await bot.add_cog(Space(bot))
236+
# XXX: Disabled due to issues with NASA API, see https://github.com/python-discord/sir-lancebot/issues/1709
237+
238+
# await bot.add_cog(Space(bot))
239+
return

0 commit comments

Comments
 (0)