Skip to content

Commit

Permalink
fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zen-xu committed Nov 27, 2024
1 parent d55a12c commit 07afa44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/pixi_uv_conversions/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ pub fn to_uv_trusted_host(
TrustedHost::Host { scheme, host, port } => Ok(uv_configuration::TrustedHost::Host {
scheme: scheme.clone(),
host: host.to_string(),
port: port.clone(),
port: *port,
}),
}
}

0 comments on commit 07afa44

Please sign in to comment.