diff --git a/crates/puffin-distribution/src/download.rs b/crates/puffin-distribution/src/download.rs index 56fd67d69..b3ca4a98d 100644 --- a/crates/puffin-distribution/src/download.rs +++ b/crates/puffin-distribution/src/download.rs @@ -83,7 +83,7 @@ impl LocalWheel { /// Return the [`Dist`] from which this wheel was downloaded. pub fn remote(&self) -> &Dist { match self { - LocalWheel::Unzipped(wheel) => &wheel.remote(), + LocalWheel::Unzipped(wheel) => wheel.remote(), LocalWheel::InMemory(wheel) => wheel.remote(), LocalWheel::Disk(wheel) => wheel.remote(), LocalWheel::Built(wheel) => wheel.remote(),