diff options
| author | 2019-03-09 12:08:57 -0500 | |
|---|---|---|
| committer | 2019-03-09 12:08:57 -0500 | |
| commit | 869f2ccdafeb0f4f150988542ce1b25286cac0d3 (patch) | |
| tree | efbe0be19a7116ae801508b9be543603815512a5 /bot/constants.py | |
| parent | Add newlines (diff) | |
| parent | Merge pull request #138 from python-discord/docker-fix (diff) | |
Merge branch 'master' into dpy-cog-changes
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 18 | 
1 files changed, 17 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index 0ffc9081..b19d494b 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -6,7 +6,7 @@ from bot.bot import SeasonalBot  __all__ = (      "AdventOfCode", "Channels", "Client", "Colours", "Emojis", "Hacktoberfest", "Roles", -    "Tokens", "bot" +    "Tokens", "ERROR_REPLIES", "bot"  )  log = logging.getLogger(__name__) @@ -109,6 +109,22 @@ class Roles(NamedTuple):  class Tokens(NamedTuple):      giphy = environ.get("GIPHY_TOKEN")      aoc_session_cookie = environ.get("AOC_SESSION_COOKIE") +    omdb = environ.get("OMDB_API_KEY") +    youtube = environ.get("YOUTUBE_API_KEY") + + +ERROR_REPLIES = [ +    "Please don't do that.", +    "You have to stop.", +    "Do you mind?", +    "In the future, don't do that.", +    "That was a mistake.", +    "You blew it.", +    "You're bad at computers.", +    "Are you trying to kill me?", +    "Noooooo!!", +    "I can't believe you've done this", +]  bot = SeasonalBot(command_prefix=Client.prefix)  |