From 27d90cd5f979108cba894731d79fd77e4dd8a8d4 Mon Sep 17 00:00:00 2001 From: Wojciech Kozlowski Date: Mon, 26 Aug 2024 19:42:38 +0200 Subject: [PATCH] Clippy lint --- src/tui/app/machine/browse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui/app/machine/browse.rs b/src/tui/app/machine/browse.rs index 0293351..50ff7ed 100644 --- a/src/tui/app/machine/browse.rs +++ b/src/tui/app/machine/browse.rs @@ -96,7 +96,7 @@ impl IAppInteractBrowse for AppMachine { Err(err) => { return AppMachine::error( self.inner, - format!("cannot fetch: HTTP client init failed: {}", err.to_string()), + format!("cannot fetch: HTTP client init failed: {err}"), ) .into() }