diff --git a/src/modules/remote.rs b/src/modules/remote.rs index 96a7c83..05cc7c0 100644 --- a/src/modules/remote.rs +++ b/src/modules/remote.rs @@ -10,7 +10,7 @@ fn write_gh_auth_token(entry: Entry) -> keyring::Result { let mut buffer = String::new(); io::stdin().read_line(&mut buffer).unwrap(); - entry.set_password(&buffer.trim())?; + entry.set_password(buffer.trim())?; Ok(entry.get_password()?) }