From 80b7c4df890a527d502d8a89eea9d80c9c24d26e Mon Sep 17 00:00:00 2001 From: Daniel Dolezal Date: Wed, 8 May 2024 23:43:01 +0200 Subject: [PATCH] fix typo in LocalStorage file path --- server/storage/LocalStorage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/storage/LocalStorage.py b/server/storage/LocalStorage.py index 8a45938..41f8694 100644 --- a/server/storage/LocalStorage.py +++ b/server/storage/LocalStorage.py @@ -6,7 +6,7 @@ import json, os class LocalStorage: def __init__(self, file_path:str): self.save_folder_dict = { - "standart": "01_Standart", + "standard": "01_Standard", "duel": "02_Duels", "constrictor": "04_Constrictor", "solo": "05_Solo",