Skip to content

Commit 7e91803

Browse files
committed
version 1.0.2
1 parent e32cf4f commit 7e91803

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlxp/_internal/configure.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ def _get_mlxp_configs(mlxp_file, default_config_mlxp):
8181

8282
with open(mlxp_file, "r") as file:
8383
mlxp_config = OmegaConf.create({"mlxp": yaml.safe_load(file)})
84-
_chek_keys(mlxp_config, valid_keys)
84+
_chek_keys(mlxp_config, valid_keys,_chek_keys)
8585

86-
def _chek_keys(mlxp_config, valid_keys):
86+
def _chek_keys(mlxp_config, valid_keys,mlxp_file):
8787
for key in mlxp_config["mlxp"].keys():
8888
try:
8989
assert key in valid_keys

0 commit comments

Comments
 (0)