Skip to content

Commit d30e03c

Browse files
committed
clap_std: Remove unused import
error: unused import: `arg` --> framework_lib/src/commandline/clap_std.rs:6:12 | 6 | use clap::{arg, command, Arg, Args, FromArgMatches}; | ^^^ | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]` Signed-off-by: Daniel Schaefer <[email protected]>
1 parent bb87855 commit d30e03c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework_lib/src/commandline/clap_std.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! as well as on the UEFI shell tool.
44
use clap::error::ErrorKind;
55
use clap::Parser;
6-
use clap::{arg, command, Arg, Args, FromArgMatches};
6+
use clap::{command, Arg, Args, FromArgMatches};
77
use clap_num::maybe_hex;
88

99
use crate::chromium_ec::commands::SetGpuSerialMagic;

0 commit comments

Comments
 (0)