From ab885fccffcec2cc792980eded243ed93c33d4d8 Mon Sep 17 00:00:00 2001 From: Emily Doherty Date: Tue, 10 Dec 2024 00:01:13 -0800 Subject: [PATCH] (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. --- token_bot/tracker.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/token_bot/tracker.py b/token_bot/tracker.py index 67a7e82..26fc551 100644 --- a/token_bot/tracker.py +++ b/token_bot/tracker.py @@ -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.region_menu import REGION_MENU + #### Static Helper Functions @@ -85,7 +86,7 @@ class Tracker(Extension): 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"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])