aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/evergreen/snakes/utils.py
diff options
context:
space:
mode:
authorGravatar Madison Mcdonald <[email protected]>2019-03-18 13:37:41 -0600
committerGravatar Madison Mcdonald <[email protected]>2019-03-18 13:37:41 -0600
commitd5dfcc0ec21c6b6d70dc7d13fa66aa78839a5151 (patch)
tree111413261a1fbfb51bb3536cdff3628be08f7a9a /bot/seasons/evergreen/snakes/utils.py
parentMerge pull request #140 from Suhail6inkling/pickup-lines (diff)
changes lemon made me do
Diffstat (limited to 'bot/seasons/evergreen/snakes/utils.py')
-rw-r--r--bot/seasons/evergreen/snakes/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/snakes/utils.py b/bot/seasons/evergreen/snakes/utils.py
index 605c7ef3..ec280223 100644
--- a/bot/seasons/evergreen/snakes/utils.py
+++ b/bot/seasons/evergreen/snakes/utils.py
@@ -117,7 +117,7 @@ ANGLE_RANGE = math.pi * 2
def get_resource(file: str) -> List[dict]:
- with (SNAKE_RESOURCES / f"{file}.json").open() as snakefile:
+ with (SNAKE_RESOURCES / f"{file}.json").open(encoding="utf-8") as snakefile:
return json.load(snakefile)