mirror of
https://github.com/astral-sh/uv.git
synced 2025-12-08 02:47:16 +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) {
|
if tracing::enabled!(Level::DEBUG) {
|
||||||
let incompatibility = self.pubgrub.incompatibility_store[incompatibility]
|
let incompatibility = self.pubgrub.incompatibility_store[incompatibility]
|
||||||
.iter()
|
.iter()
|
||||||
.map(|(package, _term)| {
|
.map(|(package, _term)| &self.pubgrub.package_store[package])
|
||||||
format!("{}", self.pubgrub.package_store[package].clone(),)
|
|
||||||
})
|
|
||||||
.join(", ");
|
.join(", ");
|
||||||
if let Some(version) = version {
|
if let Some(version) = version {
|
||||||
debug!(
|
debug!(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue