diff options
| -rw-r--r-- | .DS_Store | bin | 0 -> 6148 bytes | |||
| -rw-r--r-- | bot/seasons/pride/__init__.py | 16 | 
2 files changed, 16 insertions, 0 deletions
| diff --git a/.DS_Store b/.DS_StoreBinary files differ new file mode 100644 index 00000000..c6d2dc45 --- /dev/null +++ b/.DS_Store diff --git a/bot/seasons/pride/__init__.py b/bot/seasons/pride/__init__.py new file mode 100644 index 00000000..a0c65753 --- /dev/null +++ b/bot/seasons/pride/__init__.py @@ -0,0 +1,16 @@ +from bot.seasons import SeasonBase + + +class Pride(SeasonBase): +    """ +    In support of our pride community, and in hopes of providing global cultural knowledge, +    this event provides information about the LGBTQ community. +    """ + +    name = "pride" +    bot_name = "Spookybot" +    greeting = "Happy Pride Month!" + +    # Duration of season +    start_date = "01/06" +    end_date = "30/06" | 
