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/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/mozart/src/main.rs') diff --git a/crates/mozart/src/main.rs b/crates/mozart/src/main.rs index 701f3ef..bf2c980 100644 --- a/crates/mozart/src/main.rs +++ b/crates/mozart/src/main.rs @@ -1,4 +1,4 @@ -use clap::Parser; +use clap::Parser as _; use mozart::commands; use mozart_core::MOZART_VERSION; use mozart_core::exit_code; @@ -70,7 +70,7 @@ async fn main() { } let Some(ref _cmd) = cli.command else { - use clap::CommandFactory; + use clap::CommandFactory as _; commands::Cli::command().print_help().ok(); println!(); return; -- cgit v1.3.1