This commit is contained in:
kramo
2023-03-24 22:56:12 +01:00
parent bfa7cbfe08
commit fc2932f7dd
3 changed files with 2 additions and 4 deletions

View File

@@ -41,6 +41,6 @@ def get_games(game_ids=None):
for game in game_files:
with open(os.path.join(games_dir, game), "r") as open_file:
data = json.loads(open_file.read())
games[data["game_id"]] = data
games[data["game_id"]] = data
return games