фикс кодировки при чтении / TODO

main
сачтик 9 months ago committed by GitHub
parent 90035b7bc1
commit 32efe3e2d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,3 +1,4 @@
# TODO: переделать
import os
import json
@ -10,9 +11,10 @@ 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:

Loading…
Cancel
Save