Fix all clippy warnings for CI compatibility

This commit is contained in:
2026-06-01 21:46:38 +02:00
parent 6d6aafc5bd
commit 2c2bb67c3f
5 changed files with 19 additions and 25 deletions
-2
View File
@@ -118,8 +118,6 @@ pub fn sanitize_path(p: &str) -> String {
}
}
/// Check whether a path looks like a network/UNC path (for warning purposes).
/// Check whether a path looks like a network/UNC path (for warning purposes).
pub fn is_network_path(p: &str) -> bool {
p.starts_with("\\\\") || p.starts_with("//")