from bot.constants import Colours from bot.seasons import SeasonBase class Pride(SeasonBase): """ The month of June is a special month for us at Python Discord. It is very important to us that everyone feels welcome here, no matter their origin, identity or sexuality. During the month of June, while some of you are participating in Pride festivals across the world, we will be celebrating individuality and commemorating the history and challenges of the LGBTQ+ community with a Pride event of our own! While this celebration takes place, you'll notice a few changes: • The server icon has changed to our Pride icon. Thanks to <@98694745760481280> for the design! • [Pride issues are now available for SeasonalBot on the repo](https://git.io/pythonpride). • You may see Pride-themed esoteric challenges and other microevents. If you'd like to contribute, head on over to <#542272993192050698> and we will help you get started. It doesn't matter if you're new to open source or Python, if you'd like to help, we will find you a task and teach you what you need to know. """ name = "pride" bot_name = "ProudBot" greeting = "Happy Pride Month!" # Duration of season start_date = "01/06" end_date = "01/07" # Season logo colour = Colours.soft_red icon = ( "/logos/logo_seasonal/pride/logo_pride.png", )