From 0cb9620e427513a93a09f8016a1846e51692ea54 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 26 Apr 2026 15:09:10 -0700 Subject: [PATCH] Apply rustfmt to cli main --- cli/src/main.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index 59fcadf..e01c0a7 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -2,7 +2,11 @@ use anyhow::Result; use clap::Parser; #[derive(Parser)] -#[command(name = "ubuntu-fidoctl", version, about = "Manage ubuntu-fido configuration")] +#[command( + name = "ubuntu-fidoctl", + version, + about = "Manage ubuntu-fido configuration" +)] struct Cli { #[command(subcommand)] cmd: Cmd,