Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added typing to command_utils.py #194

Merged
merged 4 commits into from
Mar 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ exclude = [
"**/starboard.py",
"**/uptime.py",
"**/working_on.py",
"**/utils/command_utils.py",
"**/utils/snailrace_utils.py",
]

11 changes: 10 additions & 1 deletion uqcsbot/holidays.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,21 @@
from zoneinfo import ZoneInfo

from uqcsbot.bot import UQCSBot
from uqcsbot.utils.command_utils import HYPE_REACTS

HOLIDAY_URL = "https://www.timeanddate.com/holidays/fun/"
HOLIDAY_CSV_PATH = "uqcsbot/static/geek_holidays.csv"
HOLIDAY_MESSAGE = "Today is {}!"
GENERAL_CHANNEL = "general"
HYPE_REACTS = [
"blahaj",
"blobhajHeart",
"realheart",
"blobhajInnocent",
"keen",
"bigsippin",
"pog_of_greed",
"blobhajHearts",
]


class Holiday:
Expand Down
31 changes: 0 additions & 31 deletions uqcsbot/utils/command_utils.py

This file was deleted.

Loading