Skip to content

Commit

Permalink
correct plotting_info path for runner
Browse files Browse the repository at this point in the history
  • Loading branch information
JHogenboom committed Aug 6, 2024
1 parent 4ce3eba commit ad582f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/construct_flashcard.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ def construct_flashcard(aggregated_data_path, variable, positive_strata, negativ
plotting_info[variable]['positive_count'] = relative_positive_icons

# Save updated plotting information back to JSON file
with open(os.path.join(os.path.dirname(os.getcwd()), plotting_information_path), 'w') as f:
with open(plotting_information_path, 'w') as f:
json.dump(plotting_info, f)

0 comments on commit ad582f1

Please sign in to comment.