From 006154749d0376dad85cfd418f820b8264f76839 Mon Sep 17 00:00:00 2001 From: Olson Dimanche Date: Thu, 21 Mar 2019 13:16:51 -0400 Subject: set up bot directory for pride event --- bot/seasons/pride/__init__.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 bot/seasons/pride/__init__.py (limited to 'bot') 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" -- cgit v1.2.3 From fa430043ed44c6e5d202f04ae1cfd8f7781c97ff Mon Sep 17 00:00:00 2001 From: Olson Dimanche Date: Thu, 21 Mar 2019 13:41:23 -0400 Subject: update bot name to Proud Bot --- bot/seasons/pride/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bot') diff --git a/bot/seasons/pride/__init__.py b/bot/seasons/pride/__init__.py index a0c65753..7f06ff3b 100644 --- a/bot/seasons/pride/__init__.py +++ b/bot/seasons/pride/__init__.py @@ -8,7 +8,7 @@ class Pride(SeasonBase): """ name = "pride" - bot_name = "Spookybot" + bot_name = "ProudBot" greeting = "Happy Pride Month!" # Duration of season -- cgit v1.2.3 From bcba4bd8acf4a5e3fe9fe986cb494f1c2a515948 Mon Sep 17 00:00:00 2001 From: Olson Dimanche Date: Thu, 21 Mar 2019 13:47:01 -0400 Subject: updated info on pride bot to be more inclusive --- bot/seasons/pride/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'bot') diff --git a/bot/seasons/pride/__init__.py b/bot/seasons/pride/__init__.py index 7f06ff3b..e16f9d25 100644 --- a/bot/seasons/pride/__init__.py +++ b/bot/seasons/pride/__init__.py @@ -1,9 +1,8 @@ from bot.seasons import SeasonBase - class Pride(SeasonBase): """ - In support of our pride community, and in hopes of providing global cultural knowledge, + In support of all cultures and communities, and in hopes of providing global cultural knowledge, this event provides information about the LGBTQ community. """ -- cgit v1.2.3 From c410c0efd3f42618e0659f22dcaa106ff1ade919 Mon Sep 17 00:00:00 2001 From: Olson Dimanche Date: Thu, 21 Mar 2019 13:54:08 -0400 Subject: final update on pride bot comment --- bot/seasons/pride/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bot') diff --git a/bot/seasons/pride/__init__.py b/bot/seasons/pride/__init__.py index e16f9d25..30d40a2d 100644 --- a/bot/seasons/pride/__init__.py +++ b/bot/seasons/pride/__init__.py @@ -2,8 +2,8 @@ from bot.seasons import SeasonBase class Pride(SeasonBase): """ - In support of all cultures and communities, and in hopes of providing global cultural knowledge, - this event provides information about the LGBTQ community. + No matter your origins, identity or sexuality, we hope we can come together to celebrate each and every person's individuality this Pride Month. + Features of ProudBot will be encouraged to be contributed during this event which appropriately commemorate the history and challenges of the LGBTQ+ community. """ name = "pride" -- cgit v1.2.3 From 64a41dc07022a0714c1cb2748dca71f0f856fe26 Mon Sep 17 00:00:00 2001 From: Olson Dimanche Date: Thu, 21 Mar 2019 14:12:37 -0400 Subject: Updated linting and pride bot description --- bot/seasons/pride/__init__.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'bot') diff --git a/bot/seasons/pride/__init__.py b/bot/seasons/pride/__init__.py index 30d40a2d..d8a7e34b 100644 --- a/bot/seasons/pride/__init__.py +++ b/bot/seasons/pride/__init__.py @@ -1,9 +1,11 @@ from bot.seasons import SeasonBase + class Pride(SeasonBase): """ - No matter your origins, identity or sexuality, we hope we can come together to celebrate each and every person's individuality this Pride Month. - Features of ProudBot will be encouraged to be contributed during this event which appropriately commemorate the history and challenges of the LGBTQ+ community. + No matter your origin, identity or sexuality, we come together to celebrate each and everyone's individuality. + Feature contributions to ProudBot is encouraged to commemorate the history and challenges of the LGBTQ+ community. + Happy Pride Month """ name = "pride" -- cgit v1.2.3