From c970160e2034ed47a43be6946f7998c4dde77a18 Mon Sep 17 00:00:00 2001 From: Bojan Serafimov Date: Wed, 10 Jan 2024 15:53:20 -0500 Subject: [PATCH] clippy --- crates/puffin-distribution/src/download.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(),