Skip to content

Commit 2e999f6

Browse files
committed
Fix more clippy warnings
1 parent 2b8ca0c commit 2e999f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/file_assoc.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ pub fn uninstall_file_association() -> MainResult<()> {
6161
.ignore_missing_and(&mut notify)?;
6262
hlcr.delete_subkey(r"RustScript.Ers\shell\open")
6363
.ignore_missing_and(&mut notify)?;
64-
hlcr.delete_subkey(r#"RustScript.Ers\shell"#)
64+
hlcr.delete_subkey(r"RustScript.Ers\shell")
6565
.ignore_missing_and(&mut notify)?;
66-
hlcr.delete_subkey(r#"RustScript.Ers"#)
66+
hlcr.delete_subkey(r"RustScript.Ers")
6767
.ignore_missing_and(&mut notify)?;
6868
}
6969

0 commit comments

Comments
 (0)