Skip to content

Commit

Permalink
Fix serialization in export.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbernstein committed Feb 20, 2024
1 parent 42812c3 commit 9004b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/operation/export_analysis_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def verify_success() -> bool:
map_to_save[i] = self._template_definition[i]

# save the template as json file
definition_json_str = json.dumps(map_to_save, indent=4)
definition_json_str = json.dumps(map_to_save, indent=4, default=str)
template_file_path = self._resolve_path(
self._output_dir, TEMPLATE_DIR, self._template_definition["Name"] + ".json"
)
Expand Down

0 comments on commit 9004b51

Please sign in to comment.