mirror of
https://github.com/astral-sh/uv.git
synced 2025-12-04 17:12:42 +00:00
Remove unnecessary clone on package name (#10741)
This commit is contained in:
parent
35aec8863e
commit
ae366ccd0e
1 changed files with 1 additions and 3 deletions
|
|
@ -2694,9 +2694,7 @@ impl ForkState {
|
|||
if tracing::enabled!(Level::DEBUG) {
|
||||
let incompatibility = self.pubgrub.incompatibility_store[incompatibility]
|
||||
.iter()
|
||||
.map(|(package, _term)| {
|
||||
format!("{}", self.pubgrub.package_store[package].clone(),)
|
||||
})
|
||||
.map(|(package, _term)| &self.pubgrub.package_store[package])
|
||||
.join(", ");
|
||||
if let Some(version) = version {
|
||||
debug!(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue