We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e32cf4f commit 7e91803Copy full SHA for 7e91803
mlxp/_internal/configure.py
@@ -81,9 +81,9 @@ def _get_mlxp_configs(mlxp_file, default_config_mlxp):
81
82
with open(mlxp_file, "r") as file:
83
mlxp_config = OmegaConf.create({"mlxp": yaml.safe_load(file)})
84
- _chek_keys(mlxp_config, valid_keys)
+ _chek_keys(mlxp_config, valid_keys,_chek_keys)
85
86
-def _chek_keys(mlxp_config, valid_keys):
+def _chek_keys(mlxp_config, valid_keys,mlxp_file):
87
for key in mlxp_config["mlxp"].keys():
88
try:
89
assert key in valid_keys
0 commit comments