[No-auto] bin/core/category: Fix Clippy warnings

Signed-off-by: flip1995 <hello@philkrones.com>
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
flip1995 2019-08-27 10:31:13 +02:00 committed by Matthias Beyer
parent 846304e687
commit cba336e1dd

View file

@ -70,9 +70,7 @@ fn main() {
"Add a category to entries and manage categories", "Add a category to entries and manage categories",
ui::build_ui); ui::build_ui);
rt.cli() if let Some(name) = rt.cli().subcommand_name() {
.subcommand_name()
.map(|name| {
match name { match name {
"set" => set(&rt), "set" => set(&rt),
"get" => get(&rt), "get" => get(&rt),
@ -88,7 +86,7 @@ fn main() {
.map(::std::process::exit); .map(::std::process::exit);
}, },
} }
}); }
} }
fn set(rt: &Runtime) { fn set(rt: &Runtime) {