summaryrefslogtreecommitdiffstats
path: root/src/commands/key_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/key_command.rs')
-rw-r--r--src/commands/key_command.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/key_command.rs b/src/commands/key_command.rs
index 6f407a2..3ad2a79 100644
--- a/src/commands/key_command.rs
+++ b/src/commands/key_command.rs
@@ -345,12 +345,12 @@ impl std::str::FromStr for KeyCommand {
}
}
Ok(Self::ShowWorkers(exit_key))
- },
+ }
Err(e) => Err(JoshutoError::new(
JoshutoErrorKind::InvalidParameters,
format!("{}: {}", arg, e),
)),
- }
+ },
"sort" => match arg {
"reverse" => Ok(Self::SortReverse),
arg => match SortType::parse(arg) {