From b2fa9b67fb7e2f3103f199b56c59582855772e0e Mon Sep 17 00:00:00 2001 From: Sebastian Speitel <vorniy@gmail.com> Date: Wed, 8 Sep 2021 20:03:12 +0200 Subject: [PATCH] improve(leaderboard): close file handles --- leaderboard.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/leaderboard.py b/leaderboard.py index 49cacfa..b4bc893 100644 --- a/leaderboard.py +++ b/leaderboard.py @@ -11,13 +11,13 @@ class Leaderboard(commands.Cog): def load(self): """ Load highscores from json file """ - highscore_file = open("highscores.json", mode="r") - return json.load(highscore_file) + with open("highscores.json", mode="r") as highscore_file: + return json.load(highscore_file) def save(self): """ Save highscores to json file """ - highscore_file = open("highscores.json", mode="w") - json.dump(self.highscores, highscore_file) + with open("highscores.json", mode="w") as highscore_file: + json.dump(self.highscores, highscore_file) @commands.command(name="highscore") async def cmd_highscore(self, ctx, score: int): -- GitLab