Compare commits

...

3 Commits

Author SHA1 Message Date
ceaabe3dac Fix await for user_is_registered 2024-12-14 20:29:21 -08:00
a9e50c2c8e (minor) Text update to reflect new bot name 2024-12-10 00:39:12 -08:00
ab885fccff (minor) Formatting fix since I had to remove the pre-commit hook for now
There was some terrible funky interaction between PyCharm, Black, and the pre-commit hook where the pre-commit black would complain that the file formatted need fixing, but black in the IDE and CLI would pass with no issue.
2024-12-10 00:01:13 -08:00

View File

@ -38,6 +38,7 @@ from token_bot.ui.select_menus.alert_menu import HIGH_ALERT_MENU, LOW_ALERT_MENU
from token_bot.ui.select_menus.flavor_menu import FLAVOR_MENU from token_bot.ui.select_menus.flavor_menu import FLAVOR_MENU
from token_bot.ui.select_menus.region_menu import REGION_MENU from token_bot.ui.select_menus.region_menu import REGION_MENU
#### Static Helper Functions #### Static Helper Functions
@ -80,12 +81,12 @@ class Tracker(Extension):
discord_user = await self.bot.fetch_user(user.user_id) discord_user = await self.bot.fetch_user(user.user_id)
embeds = [ embeds = [
Embed( Embed(
title="TokenBot Tracker Alert Triggered", title="GoblinBot Tracker Alert Triggered",
color=0xB10000, color=0xB10000,
description=f"Hello, you requested to be sent an alert when the price of the World of Warcraft " description=f"Hello, you requested to be sent an alert when the price of the World of Warcraft "
f"token reaches a certain value.\n\n" f"token reaches a certain value.\n\n"
f"As a reminder, you can remove an alert via ```/remove-alert```\n" f"As a reminder, you can remove an alert via ```/remove-alert```\n"
f"or you can remove all alerts and user data via ```/remove-registration```\n\n", f"or you can remove all alerts and user data via ```/remove-registration```\n\n",
) )
] ]
alerts_by_flavor = await gather_alerts_by_flavor(users_alerts[user]) alerts_by_flavor = await gather_alerts_by_flavor(users_alerts[user])
@ -203,7 +204,7 @@ class Tracker(Extension):
name="remove-alert", description="Remove an alert you have signed up for" name="remove-alert", description="Remove an alert you have signed up for"
) )
async def remove_alert(self, ctx: SlashContext): async def remove_alert(self, ctx: SlashContext):
if not self._user_is_registered(ctx): if not await self._user_is_registered(ctx):
return return
user = await self._users.get(ctx.user.id) user = await self._users.get(ctx.user.id)
alerts = await self._users.list_alerts(user) alerts = await self._users.list_alerts(user)