Skip to content

Commit

Permalink
fix: bug related to wrong parameter files transfer in submit.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ZLI-afk committed Jan 27, 2024
1 parent 1b4e10e commit adea530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apex/submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def pack_upload_dir(
"""
cwd = os.getcwd()
os.chdir(work_dir)
relax_confs = prop_param.get("structures", []) if relax_param else []
relax_confs = relax_param.get("structures", []) if relax_param else []
prop_confs = prop_param.get("structures", []) if prop_param else []
confs = relax_confs + prop_confs
assert len(confs) > 0, "No configuration path indicated!"
Expand Down

0 comments on commit adea530

Please sign in to comment.