Skip to content

Commit

Permalink
GenericJob: Fix restart file list
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Mar 26, 2024
1 parent 7303661 commit bb92e29
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyiron_base/jobs/job/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,10 @@ def restart_file_list(self):
Returns:
list: list of files
"""
return [str(f) if isinstance(f, File) else f for f in self._restart_file_list]
self._restart_file_list = [
str(f) if isinstance(f, File) else f for f in self._restart_file_list
]
return self._restart_file_list

@restart_file_list.setter
def restart_file_list(self, filenames):
Expand Down

0 comments on commit bb92e29

Please sign in to comment.