Skip to content

Commit 8cc3cfd

Browse files
committed
fix(import): collapse split clap imports in usage_md
perfectionist 34be521 (PR 173) fixes import_granularity so it now detects multiple `use clap::...` statements that should be merged under the `crate` style. Combine the two clap imports in src/usage_md.rs into a single statement. https://claude.ai/code/session_015ZyokLaZvcy5Yt8KpPxV3F
1 parent 40add4b commit 8cc3cfd

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/usage_md.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use crate::args::Args;
2-
use clap::builder::PossibleValue;
3-
use clap::{Arg, ArgAction, Command, CommandFactory};
2+
use clap::{Arg, ArgAction, Command, CommandFactory, builder::PossibleValue};
43
use derive_more::{Display, Error};
54
use itertools::Itertools;
65
use pipe_trait::Pipe;

0 commit comments

Comments
 (0)