Skip to content

Commit d53450f

Browse files
fix dumped in.json for hti_liq (#87)
* fix dumped in.json for hti_liq * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 12b6649 commit d53450f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dpti/hti_liq.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,11 +344,11 @@ def make_tasks(iter_name, jdata, if_meam=None):
344344
create_path(iter_name)
345345
copied_conf = os.path.join(os.path.abspath(iter_name), "conf.lmp")
346346
shutil.copyfile(equi_conf, copied_conf)
347-
# jdata['equi_conf'] = copied_conf
347+
jdata["equi_conf"] = copied_conf
348348
if model:
349349
copied_model = os.path.join(os.path.abspath(iter_name), "graph.pb")
350350
shutil.copyfile(model, copied_model)
351-
# jdata['model'] = copied_model
351+
jdata["model"] = copied_model
352352

353353
cwd = os.getcwd()
354354
os.chdir(iter_name)

0 commit comments

Comments
 (0)