Skip to content

Commit

Permalink
fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zbowling committed Dec 29, 2024
1 parent 168ba2c commit 4a4f1cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/pixi_manifest/src/manifests/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ impl Manifest {
let (Some(name), spec) = spec.clone().into_nameless() else {
miette::bail!(format!(
"{} does not support wildcard dependencies",
consts::PIXI_BIN_NAME.to_string()
consts::PIXI_BIN_NAME.as_str()
));
};
let spec = PixiSpec::from_nameless_matchspec(spec, channel_config);
Expand Down

0 comments on commit 4a4f1cf

Please sign in to comment.