From eaf49758e7a175aeeeeafdb66c3c1a5fc96a4b10 Mon Sep 17 00:00:00 2001 From: Numerlor Date: Thu, 3 Oct 2019 20:21:39 +0200 Subject: add the adventofcode channel to Channels constant --- bot/constants.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bot/constants.py') diff --git a/bot/constants.py b/bot/constants.py index 0d4321c8..c1722158 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -22,6 +22,7 @@ class AdventOfCode: class Channels(NamedTuple): admins = 365960823622991872 + advent_of_code = 517745814039166986 announcements = int(environ.get("CHANNEL_ANNOUNCEMENTS", 354619224620138496)) big_brother_logs = 468507907357409333 bot = 267659945086812160 -- cgit v1.2.3 From 960ed42684c2d5a49464c4bc68c52ad5d94edc28 Mon Sep 17 00:00:00 2001 From: RohanRadia Date: Mon, 7 Oct 2019 16:43:21 +0100 Subject: Added GitHub emojis to constants file --- bot/constants.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bot/constants.py') diff --git a/bot/constants.py b/bot/constants.py index 0d4321c8..124c48ae 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -86,6 +86,12 @@ class Emojis: terning5 = "<:terning5:431249716328792064>" terning6 = "<:terning6:431249726705369098>" + issue = "<:IssueOpen:629695470327037963>", + issue_closed = "<:IssueClosed:629695470570307614>", + pull_request = "<:PROpen:629695470175780875>", + pull_request_closed = "<:PRClosed:629695470519713818>", + merge = "<:PRMerged:629695470570176522>" + class Lovefest: role_id = int(environ.get("LOVEFEST_ROLE_ID", 542431903886606399)) -- cgit v1.2.3 From fc6dc955cf41c3f0b18927b22d8d46fd18a847d6 Mon Sep 17 00:00:00 2001 From: RohanRadia Date: Mon, 7 Oct 2019 22:52:33 +0100 Subject: Trailing Commas Removed --- bot/constants.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bot/constants.py') diff --git a/bot/constants.py b/bot/constants.py index 124c48ae..e0195961 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -86,10 +86,10 @@ class Emojis: terning5 = "<:terning5:431249716328792064>" terning6 = "<:terning6:431249726705369098>" - issue = "<:IssueOpen:629695470327037963>", - issue_closed = "<:IssueClosed:629695470570307614>", - pull_request = "<:PROpen:629695470175780875>", - pull_request_closed = "<:PRClosed:629695470519713818>", + issue = "<:IssueOpen:629695470327037963>" + issue_closed = "<:IssueClosed:629695470570307614>" + pull_request = "<:PROpen:629695470175780875>" + pull_request_closed = "<:PRClosed:629695470519713818>" merge = "<:PRMerged:629695470570176522>" -- cgit v1.2.3