Linting & formatting

This commit is contained in:
2021-11-21 22:04:27 +01:00
parent bbedc9d8a8
commit ca1f649ecf
3 changed files with 68 additions and 57 deletions

View File

@@ -28,12 +28,8 @@ pub enum SubCommand {
Find(Find),
#[clap(about = "Show status of configured repositories")]
Status(OptionalConfig),
#[clap(
visible_alias = "wt",
about = "Manage worktrees"
)]
#[clap(visible_alias = "wt", about = "Manage worktrees")]
Worktree(Worktree),
}
#[derive(Parser)]
@@ -81,7 +77,6 @@ pub struct WorktreeActionArgs {
pub name: String,
}
pub fn parse() -> Opts {
Opts::parse()
}