Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lgmarchi committed Jan 11, 2024
1 parent ae88525 commit c0ee8ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/src/utils/local_file_path.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub fn get_fixed_path_to_load_local_file(path: PathBuf) -> String {
format!(
"{}{}",
PREFIX_TO_WORK_ON_WINDOWS_OS,
path.to_string_lossy().to_string().replace("\\", "/")
path.to_string_lossy().to_string().replace('\\', "/")
)
}
}

0 comments on commit c0ee8ec

Please sign in to comment.