diff options
author | 2019-10-12 17:34:29 -0600 | |
---|---|---|
committer | 2019-10-12 17:34:29 -0600 | |
commit | feb08b23a4992dab67161b2dd956bb92ef1f04ea (patch) | |
tree | 9dca8f9dfce30ffc1c69df2ce145c7a255f4a48e | |
parent | Implement message deletion (diff) |
Fix Constants.AntiMalware.whitelist type
-rw-r--r-- | bot/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py index 81f316d57..aecd6be59 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -463,7 +463,7 @@ class AntiSpam(metaclass=YAMLGetter): class AntiMalware(metaclass=YAMLGetter): section = "anti_malware" - whitelist: tuple + whitelist: list class BigBrother(metaclass=YAMLGetter): |