Skip to content

Commit

Permalink
Load running jobs' xyz as dict from restart (#678)
Browse files Browse the repository at this point in the history
Otherwise, ARC fails when it tries to compute dihedral angles after a
restarted scan job has finished
  • Loading branch information
kfir4444 committed Jun 26, 2023
2 parents e7630b5 + 26b13b1 commit f2f929b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arc/job/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ def as_dict(self) -> dict:
if self.tsg is not None:
job_dict['tsg'] = self.tsg
if self.xyz is not None:
job_dict['xyz'] = xyz_to_str(self.xyz)
job_dict['xyz'] = self.xyz
return job_dict

def format_max_job_time(self, time_format: str) -> str:
Expand Down

0 comments on commit f2f929b

Please sign in to comment.