diff --git a/db.py b/db.py index 5074580..fd44b9d 100644 --- a/db.py +++ b/db.py @@ -1,3 +1,4 @@ +# TODO: переделать import os import json @@ -10,10 +11,11 @@ if not os.path.exists('db.json'): def read_db(): - with open('db.json', 'r') as openfile: + with open("db.json", "r", encoding="utf-8") as openfile: db = json.load(openfile) return db + def write_db(db): js = json.dumps(db, indent=2) with open("db.json", "w") as outfile: - outfile.write(js) + outfile.write(js) \ No newline at end of file