Move reports fixture data to dir at project root

This commit is contained in:
graham-dds 2019-12-10 11:08:03 -05:00
parent 29644a495b
commit c14ad9fdd3
2 changed files with 1 additions and 4 deletions

View File

@ -1,13 +1,10 @@
from collections import defaultdict
import json
import os
from decimal import Decimal
def load_fixture_data():
with open(
os.path.join(os.path.dirname(__file__), "fixture_spend_data.json"), "r"
) as json_file:
with open("fixtures/fixture_spend_data.json") as json_file:
return json.load(json_file)