Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolassv committed May 21, 2024
1 parent 3cdaa4c commit 8a14a0a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,9 +342,11 @@ fn run_subcommand(matches: &ArgMatches, file_name: &str) -> Result<()> {
let processors = create_processors_for_arguments(sub_m);
bartib::controller::report::show_report(file_name, filter, processors)
}
("projects", Some(sub_m)) => {
bartib::controller::list::list_projects(file_name, sub_m.is_present("current"), sub_m.is_present("no-quotes"))
}
("projects", Some(sub_m)) => bartib::controller::list::list_projects(
file_name,
sub_m.is_present("current"),
sub_m.is_present("no-quotes"),
),
("last", Some(sub_m)) => {
let number = get_number_argument_or_ignore(sub_m.value_of("number"), "-n/--number")
.unwrap_or(10);
Expand Down

0 comments on commit 8a14a0a

Please sign in to comment.