From bda6ce2816d1f30468d50cbfeaca9614ad4e0c87 Mon Sep 17 00:00:00 2001 From: Vika Date: Wed, 4 Sep 2024 15:07:57 +0300 Subject: Deal with Clippy warnings 1. narrow_layout is indeed unused, `AdwBreakpoint` remembers initial values and restores them on load 2. `TagPillWidgets` is not exactly dead code, I'm adding all the widgets to it to emulate how Relm4 macros do it. Perhaps it'll be used in the future. 3. We currently ignore the libsecret result on clearing the tokens because dealing with libsecret errors is annoying and requires unsafe code due to outdated dependencies. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index ee92350..7f2a78d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -299,7 +299,7 @@ impl AsyncComponent for App { match message { Input::SignOut => { if self.micropub.take().is_some() { - libsecret::password_clear_future( + let _ = libsecret::password_clear_future( Some(&self.secret_schema), Default::default(), ).await; -- cgit 1.4.1