diff --git a/packages/ciphernode/config/src/yaml.rs b/packages/ciphernode/config/src/yaml.rs index 7134b13c..740a329d 100644 --- a/packages/ciphernode/config/src/yaml.rs +++ b/packages/ciphernode/config/src/yaml.rs @@ -5,7 +5,7 @@ pub fn load_yaml_with_env(file_path: &PathBuf) -> Result { // Read the file content to string let content = match fs::read_to_string(file_path) { Ok(val) => val, - Err(_) => "".to_string() + Err(_) => "".to_string(), }; // Collect environment variables and perform substitution