Disable the star citgizen incident poll

This commit is contained in:
Luke Robles 2024-06-14 12:13:49 -07:00
parent 59d8d28f08
commit 8dc67337aa
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ else:
class StarCitizen(commands.Cog):
def __init__(self, bot):
self.bot: commands.Bot = bot
self.poll_status_page.start()
# self.poll_status_page.start()
starcitizen = discord.SlashCommandGroup(
"starcitizen", "StarCitizen related commands"

View File

@ -7,7 +7,7 @@ import queue
def get_all_mods(letter, q: queue.Queue):
all_mods = []
# Step through the alphabet, and query each page
url = "https://warframe.fandom.com/wiki/Category:Mods?from=%s" % letter
url = f"https://warframe.fandom.com/wiki/Category:Mods?from={letter}"
response = requests.get(url)
soup = BeautifulSoup(response.text, "html.parser")