fixed typos

This commit is contained in:
Christian Risi 2025-10-03 15:17:44 +02:00
parent c74689d01d
commit 9c5f42153f

View File

@ -2,15 +2,15 @@ import json
from pathlib import Path from pathlib import Path
def save_json(vocabulary: dict, path: Path): def save_json(dictionary: dict, path: Path):
json_string = json.dumps(vocabulary) json_string = json.dumps(dictionary)
FILE = open(path, "w") FILE = open(path, "w")
FILE.write(json_string) FILE.write(json_string)
FILE.close() FILE.close()
def load_json(path: Path) -> dict[tuple[int, int], int]: def load_json(path: Path) -> dict:
FILE = open(path, "r") FILE = open(path, "r")
json_string = FILE.read() json_string = FILE.read()
FILE.close() FILE.close()