diff --git a/py/generate_synthetic_shots.py b/py/generate_synthetic_shots.py index 2811ef7..f93e76e 100644 --- a/py/generate_synthetic_shots.py +++ b/py/generate_synthetic_shots.py @@ -68,7 +68,7 @@ for i in xy: elif A > A1: dataset.append([0, i[0], i[1]]) -with open('../data/synthetic_shots.csv', 'w', newline='') as csvfile: +with open('data/synthetic_shots.csv', 'w', newline='') as csvfile: fieldnames = ['points', 'x', 'y'] writer = csv.writer(csvfile) writer.writerow(fieldnames)