Fix a minor bug

This commit is contained in:
oobabooga 2023-06-06 12:57:13 -03:00
parent f06a1387f0
commit bc58dc40bd

View File

@ -451,6 +451,8 @@ def save_history(mode, timestamp=False):
with open(Path(f'logs/{fname}'), 'w', encoding='utf-8') as f: with open(Path(f'logs/{fname}'), 'w', encoding='utf-8') as f:
f.write(json.dumps({'data': shared.history['internal'], 'data_visible': shared.history['visible']}, indent=2)) f.write(json.dumps({'data': shared.history['internal'], 'data_visible': shared.history['visible']}, indent=2))
return Path(f'logs/{fname}')
def load_history(file, name1, name2): def load_history(file, name1, name2):
file = file.decode('utf-8') file = file.decode('utf-8')