diff options
| author | 2020-03-08 17:39:51 +0100 | |
|---|---|---|
| committer | 2020-03-08 17:39:51 +0100 | |
| commit | 34dd2e2b6acd7b56c7d3ccb2380a9b0a1f28afb9 (patch) | |
| tree | 77cbbce902ecdcf29af8dd8e1b15d2d9a4b4e129 /bot/seasons/valentines/__init__.py | |
| parent | Deseasonify: remove `Evergreen` season (diff) | |
Deseasonify: adjust inheriting seasons in accordance with new system
Ensure that all inheriting seasons are now providing the right attrs
as defined in `SeasonBase`.
Diffstat (limited to 'bot/seasons/valentines/__init__.py')
| -rw-r--r-- | bot/seasons/valentines/__init__.py | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/bot/seasons/valentines/__init__.py b/bot/seasons/valentines/__init__.py index 6e5d16f7..fb3d02af 100644 --- a/bot/seasons/valentines/__init__.py +++ b/bot/seasons/valentines/__init__.py @@ -1,4 +1,4 @@ -from bot.constants import Colours +from bot.constants import Month from bot.seasons import SeasonBase @@ -9,14 +9,9 @@ class Valentines(SeasonBase): Get yourself into the bot-commands channel and check out the new features! """ - name = "valentines" - bot_name = "Tenderbot" - greeting = "Get loved-up!" + season_name = "Valentines" + bot_name = "TenderBot" - start_date = "01/02" - end_date = "01/03" + branding_path = "seasonal/valentines" - colour = Colours.pink - icon = ( - "/logos/logo_seasonal/valentines/loved_up.png", - ) + months = {Month.february} |