From deb44112883ab7ff932b0ab7c547680a615c7821 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 10 May 2026 15:35:35 +0900 Subject: refactor(clippy): deny clippy::unused_trait_names --- crates/mozart-core/src/http.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'crates/mozart-core/src/http.rs') diff --git a/crates/mozart-core/src/http.rs b/crates/mozart-core/src/http.rs index 43de55d..6fed90d 100644 --- a/crates/mozart-core/src/http.rs +++ b/crates/mozart-core/src/http.rs @@ -1,9 +1,8 @@ use crate::MOZART_VERSION; +use anyhow::{Context as _, Result, anyhow, bail}; use std::path::{Path, PathBuf}; use std::sync::OnceLock; -use anyhow::{Context, Result, anyhow, bail}; - /// Returns the common User-Agent string for all HTTP requests. /// /// Format: `Mozart/ (; )` -- cgit v1.3.1