tabedini's picture
Create utils.py
79322b9 verified
raw
history blame
No virus
174 Bytes
import json
def load_list_from_json(file_path):
with open(file_path, 'r', encoding='utf-8') as file:
return json.load(file)
if __name__ == '__main__':
pass