Yuan (Cyrus) Chiang commited on
Commit
84a2a83
·
unverified ·
1 Parent(s): a671cbd

fix file base (#33)

Browse files
Files changed (1) hide show
  1. mlip_arena/tasks/eos_alloy/flow.py +1 -1
mlip_arena/tasks/eos_alloy/flow.py CHANGED
@@ -69,7 +69,7 @@ def save_to_hdf(
69
  fpath = Path(fpath)
70
  fpath = fpath.with_stem(fpath.stem + f"_{calculator_name}")
71
 
72
- family_path = Path(__file__) / REGISTRY[calculator_name]["family"]
73
  family_path.mkdir(parents=True, exist_ok=True)
74
 
75
  with open(family_path / f"{calculator_name}_{formula}.json", "w") as f:
 
69
  fpath = Path(fpath)
70
  fpath = fpath.with_stem(fpath.stem + f"_{calculator_name}")
71
 
72
+ family_path = Path(__file__).parent / REGISTRY[calculator_name]["family"]
73
  family_path.mkdir(parents=True, exist_ok=True)
74
 
75
  with open(family_path / f"{calculator_name}_{formula}.json", "w") as f: