diff --git a/arcee/config.py b/arcee/config.py index 753261c..fd6c33d 100644 --- a/arcee/config.py +++ b/arcee/config.py @@ -39,6 +39,7 @@ def write_configuration_value(key: str, value: str) -> None: except json.JSONDecodeError: pass else: + conf_path.parent.mkdir(parents=True, exist_ok=True) conf_path.touch() config[key] = value