From e5e842931fecdd17963941c83370c2245458af1c Mon Sep 17 00:00:00 2001 From: Kieran Klukas Date: Sun, 23 Nov 2025 15:14:28 -0500 Subject: [PATCH] chore: remove unused --profile flag MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The --profile flag was defined in the CLI but never implemented or used. 💘 Generated with Crush Assisted-by: Claude Sonnet 4.5 via Crush --- crates/tangled-cli/src/cli.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/tangled-cli/src/cli.rs b/crates/tangled-cli/src/cli.rs index efe9fd1..0bfa5e5 100644 --- a/crates/tangled-cli/src/cli.rs +++ b/crates/tangled-cli/src/cli.rs @@ -7,10 +7,6 @@ pub struct Cli { #[arg(long, global = true)] pub config: Option, - /// Use named profile - #[arg(long, global = true)] - pub profile: Option, - /// Output format #[arg(long, global = true, value_enum, default_value_t = OutputFormat::Table)] pub format: OutputFormat, -- 2.50.1 (Apple Git-155)