diff options
author | 2020-10-04 21:39:11 -0400 | |
---|---|---|
committer | 2020-10-04 21:39:11 -0400 | |
commit | b042dc0fcf4988db718b24a7a2d6d6cdddbc7e67 (patch) | |
tree | 2ee3cb74dacb2885f86c7fc744ffc185bf948966 /bot/constants.py | |
parent | Merge branch 'master' into minesweeper-contribution (diff) | |
parent | Merge pull request #469 from Anubhav1603/source_cmd (diff) |
Merge branch 'master' into minesweeper-contribution
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/bot/constants.py b/bot/constants.py index 935b90e0..e113428e 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -11,7 +11,6 @@ __all__ = ( "Client", "Colours", "Emojis", - "Hacktoberfest", "Icons", "Lovefest", "Month", @@ -75,7 +74,7 @@ class Channels(NamedTuple): python_discussion = 267624335836053506 show_your_projects = int(environ.get("CHANNEL_SHOW_YOUR_PROJECTS", 303934982764625920)) show_your_projects_discussion = 360148304664723466 - hacktoberfest_2019 = 628184417646411776 + hacktoberfest_2020 = 760857070781071431 class Client(NamedTuple): @@ -129,10 +128,6 @@ class Emojis: status_offline = "<:status_offline:470326266537705472>" -class Hacktoberfest(NamedTuple): - voice_id = 514420006474219521 - - class Icons: questionmark = "https://cdn.discordapp.com/emojis/512367613339369475.png" bookmark = ( @@ -272,3 +267,7 @@ POSITIVE_REPLIES = [ class Wikipedia: total_chance = 3 + +class Source: + github = "https://github.com/python-discord/seasonalbot" + github_avatar_url = "https://avatars1.githubusercontent.com/u/9919" |