From c0ba9519550ee3c7f113e44b6d74368d5ee4392e Mon Sep 17 00:00:00 2001 From: Eduard Tolosa Date: Sun, 20 Apr 2025 13:32:54 -0500 Subject: [PATCH] Clippy fixes --- src/httplib.rs | 4 ++-- src/main.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/httplib.rs b/src/httplib.rs index ce35d45..4c9633c 100644 --- a/src/httplib.rs +++ b/src/httplib.rs @@ -35,13 +35,13 @@ pub async fn return_http_data(options: &LibOptions, from_cli: bool) -> HashMap Result<(), Box> { } else { io::stdin().read_to_string(&mut buffer).await?; hosts = buffer.lines().map(str::to_owned).collect(); - }; + } let lib_options = LibOptions { hosts,