commit
16591ee97b
@ -84,7 +84,7 @@ def load_json(filename: str):
|
|||||||
filepath = get_file_path(filename)
|
filepath = get_file_path(filename)
|
||||||
|
|
||||||
if filepath.exists():
|
if filepath.exists():
|
||||||
with open(filepath, mode='r') as f:
|
with open(filepath, mode='r',encoding = 'UTF-8') as f:
|
||||||
data = json.load(f)
|
data = json.load(f)
|
||||||
return data
|
return data
|
||||||
else:
|
else:
|
||||||
@ -97,8 +97,8 @@ def save_json(filename: str, data: dict):
|
|||||||
Save data into json file in temp path.
|
Save data into json file in temp path.
|
||||||
"""
|
"""
|
||||||
filepath = get_file_path(filename)
|
filepath = get_file_path(filename)
|
||||||
with open(filepath, mode='w+') as f:
|
with open(filepath, mode='w+',encoding = 'UTF-8') as f:
|
||||||
json.dump(data, f, indent=4)
|
json.dump(data, f,sort_keys=True,indent =4,ensure_ascii=False)
|
||||||
|
|
||||||
|
|
||||||
def round_to(value: float, target: float):
|
def round_to(value: float, target: float):
|
||||||
|
Loading…
Reference in New Issue
Block a user