From 1706897d12f3af1b3f53591c37dfc5cc35d8809d Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Tue, 1 Apr 2025 19:58:02 +0200 Subject: [PATCH] chore(core): fix clippy warning [no changelog] --- core/embed/rust/src/ui/layout_caesar/prodtest/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/embed/rust/src/ui/layout_caesar/prodtest/mod.rs b/core/embed/rust/src/ui/layout_caesar/prodtest/mod.rs index d0f1ddbb40..654a2868cb 100644 --- a/core/embed/rust/src/ui/layout_caesar/prodtest/mod.rs +++ b/core/embed/rust/src/ui/layout_caesar/prodtest/mod.rs @@ -121,7 +121,7 @@ impl ProdtestUI for UICaesar { // currently has to be here due to clippy limitations #[cfg(feature = "touch")] - fn screen_prodtest_draw(events: Vec) { + fn screen_prodtest_draw(_events: Vec) { unimplemented!() } }