Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen committed Sep 29, 2023
1 parent ab8ce3e commit a9879d1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions covalent/_workflow/postprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,13 @@ def _get_electron_metadata(self) -> Dict:
"""
executor = self.lattice.get_metadata("executor")
executor_data = self.lattice.get_metadata("executor_data")
workflow_executor = self.lattice.get_metadata("workflow_executor")
workflow_executor_data = self.lattice.get_metadata("workflow_executor_data")
pp_metadata = encode_metadata(DEFAULT_METADATA_VALUES.copy())
pp_metadata["executor"] = executor
pp_metadata["executor_data"] = executor_data
pp_metadata["workflow_executor"] = workflow_executor
pp_metadata["workflow_executor_data"] = workflow_executor_data
pp_metadata = encode_metadata(pp_metadata)
return pp_metadata

Expand Down

0 comments on commit a9879d1

Please sign in to comment.