cargo fmt

This commit is contained in:
dusk 2025-10-08 13:35:05 +00:00
parent ac5a1c6bea
commit 643f14847a
No known key found for this signature in database
2 changed files with 2 additions and 4 deletions

View file

@ -2,8 +2,7 @@ use super::*;
pub fn cmds() -> impl Iterator<Item = Command> {
[
command!("import", Optional(("url", OpaqueStringRemainder)) => "import")
.flag(YES),
command!("import", Optional(("url", OpaqueStringRemainder)) => "import").flag(YES),
command!("export" => "export"),
]
.into_iter()

View file

@ -252,8 +252,7 @@ pub fn edit() -> impl Iterator<Item = Command> {
let system_front = tokens!(system_target, ("front", ["fronter", "fronters", "f"]));
let system_front_cmd = [
command!(system_front => "system_fronter"),
command!(system_front, ("history", ["h"]) => "system_fronter_history")
.flag(CLEAR),
command!(system_front, ("history", ["h"]) => "system_fronter_history").flag(CLEAR),
command!(system_front, ("percent", ["p", "%"]) => "system_fronter_percent")
.flag(("duration", OpaqueString))
.flag(("fronters-only", ["fo"]))