Files
akaunting-py/tests/helpers.py

7 lines
128 B
Python
Raw Normal View History

import json
def RetrieveJSONFromFile(filename):
with open(filename) as f:
data = json.load(f)
return data