Browse Source

accepted clippy suggestions

pull/22/head
KaranGauswami 9 months ago
parent
commit
abb533fd3b
No known key found for this signature in database GPG Key ID: A4D57BC9D0772045
  1. 2
      src/main.rs

2
src/main.rs

@ -28,7 +28,7 @@ struct AuthParams {
fn socket_addr(s: &str) -> Result<SocketAddr> {
let mut address = s.to_socket_addrs()?;
let address = address.next();
Ok(address.ok_or_eyre(format!("no IP address found for the hostname"))?)
address.ok_or_eyre("no IP address found for the hostname".to_string())
}
#[derive(Parser, Debug)]

Loading…
Cancel
Save