Skip to content

Commit c820b43

Browse files
committed
chore: cargo fmt
1 parent 6740575 commit c820b43

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/credential_store.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,10 @@ fn get_or_create_key() -> anyhow::Result<[u8; 32]> {
8686
#[cfg(unix)]
8787
{
8888
use std::os::unix::fs::PermissionsExt;
89-
let _ = std::fs::set_permissions(parent, std::fs::Permissions::from_mode(0o700));
89+
let _ = std::fs::set_permissions(
90+
parent,
91+
std::fs::Permissions::from_mode(0o700),
92+
);
9093
}
9194
}
9295

0 commit comments

Comments
 (0)