Skip to content

Commit a112be8

Browse files
committed
reverse breaking rename
1 parent 5404615 commit a112be8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/pymatgen/analysis/local_env.py

+2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,11 @@
5555

5656
with open(f"{MODULE_DIR}/op_params.yaml", encoding="utf-8") as file:
5757
DEFAULT_OP_PARAMS: dict[str, dict[str | int, float] | None] = YAML().load(file)
58+
default_op_params = DEFAULT_OP_PARAMS # needed externally
5859

5960
with open(f"{MODULE_DIR}/cn_opt_params.yaml", encoding="utf-8") as file:
6061
CN_OPT_PARAMS: dict[int, dict[str, list[str | dict[str, float]]]] = YAML().load(file)
62+
cn_opt_params = CN_OPT_PARAMS # needed externally
6163

6264
with open(f"{MODULE_DIR}/ionic_radii.json", encoding="utf-8") as file:
6365
_ION_RADII = json.load(file)

0 commit comments

Comments
 (0)