diff options
author | 2019-10-27 02:26:52 +0100 | |
---|---|---|
committer | 2019-10-27 02:26:52 +0100 | |
commit | c66cd6f236c9f8c68a39caafdbbba1f5724947a5 (patch) | |
tree | ab469fb994eb7c5a844acb5dbfa161882d4550cc | |
parent | Add correct values for constants from production server. (diff) |
Fix broken constant tests
-rw-r--r-- | bot/constants.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/bot/constants.py b/bot/constants.py index ed1e65cca..d626fd4ba 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -252,11 +252,6 @@ class Emojis(metaclass=YAMLGetter): defcon_enabled: str # noqa: E704 defcon_updated: str # noqa: E704 - green_chevron: str - red_chevron: str - white_chevron: str - bb_message: str - status_online: str status_offline: str status_idle: str @@ -267,6 +262,9 @@ class Emojis(metaclass=YAMLGetter): pencil: str cross_mark: str + ducky: int + ducky_blurple: int + class Icons(metaclass=YAMLGetter): section = "style" @@ -344,6 +342,7 @@ class Channels(metaclass=YAMLGetter): defcon: int devlog: int devtest: int + duck_pond: int help_0: int help_1: int help_2: int |