Skip to content

Commit

Permalink
Format black
Browse files Browse the repository at this point in the history
  • Loading branch information
pyiron-runner committed Feb 23, 2024
1 parent 39692ae commit 7f6af13
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyiron_atomistics/calphy/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,10 @@ def __init__(self, project, job_name):

@property
def output(self):
#LHS - status from hdf5, RHS - status from memory
if (self["status"] == 'finished') and (self.status._get_status_from_dict() != 'finished'):
# LHS - status from hdf5, RHS - status from memory
if (self["status"] == "finished") and (
self.status._get_status_from_dict() != "finished"
):
self.from_hdf()
self.status.finished = True
return self._output
Expand Down

0 comments on commit 7f6af13

Please sign in to comment.