diff options
| author | 2020-05-19 20:52:24 -0400 | |
|---|---|---|
| committer | 2020-05-19 20:52:24 -0400 | |
| commit | ec1604d391ebbc14e25c52930e6ccadf3548b171 (patch) | |
| tree | e19ea1c1e60f3e3304e4a33f86296d68b3ca7d7d /bot/exts/halloween/candy_collection.py | |
| parent | 5/19 - bot | xmas, easter, evergreen - updated open statesments with explicit... (diff) | |
5/19 - ext - set upen files encoding to utf8 for bots
Diffstat (limited to 'bot/exts/halloween/candy_collection.py')
| -rw-r--r-- | bot/exts/halloween/candy_collection.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/exts/halloween/candy_collection.py b/bot/exts/halloween/candy_collection.py index 90c29eb2..1f79d4e6 100644 --- a/bot/exts/halloween/candy_collection.py +++ b/bot/exts/halloween/candy_collection.py @@ -27,7 +27,7 @@ class CandyCollection(commands.Cog):      def __init__(self, bot: commands.Bot):          self.bot = bot -        with open(json_location) as candy: +        with open(json_location, encoding="utf8") as candy:              self.candy_json = json.load(candy)              self.msg_reacted = self.candy_json['msg_reacted']          self.get_candyinfo = dict() | 
