Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernandez Vilanova, Lucas committed Aug 19, 2024
1 parent 991292e commit f49ae4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiida_flexpart/calculations/inversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ def prepare_for_submission(self, folder):
remote_dict = {}
for k,v in self.inputs.remotes.items():
if k.split("_")[0] in remote_dict.keys():
remote_dict[k.split("_")[0]].append(v.attributes["remote_path"]+'/'+k)
remote_dict[k.split("_")[0]].append(v.attributes["remote_path"])
else:
remote_dict[k.split("_")[0]] = [v.attributes["remote_path"]+'/'+k]
remote_dict[k.split("_")[0]] = [v.attributes["remote_path"]]

params_dict = self.inputs.inv_params.get_dict()
for k,v in remote_dict.items():
Expand Down

0 comments on commit f49ae4b

Please sign in to comment.