Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ryardley committed Dec 10, 2024
1 parent 5d51b54 commit ae146a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ciphernode/config/src/yaml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pub fn load_yaml_with_env(file_path: &PathBuf) -> Result<String> {
// 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
Expand Down

0 comments on commit ae146a2

Please sign in to comment.