From 5053a1aa777d4777ce2e1f4780c34a777d393e66 Mon Sep 17 00:00:00 2001 From: Fintan Halpenny Date: Wed, 29 Oct 2025 10:31:07 +0000 Subject: [PATCH] cli/unseed: rename options to args Have consistent naming for args --- crates/radicle-cli/src/commands/unseed.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/radicle-cli/src/commands/unseed.rs b/crates/radicle-cli/src/commands/unseed.rs index b9f6e76e..0a59c361 100644 --- a/crates/radicle-cli/src/commands/unseed.rs +++ b/crates/radicle-cli/src/commands/unseed.rs @@ -7,11 +7,11 @@ use crate::terminal as term; pub use args::Args; pub(crate) use args::ABOUT; -pub fn run(options: Args, ctx: impl term::Context) -> anyhow::Result<()> { +pub fn run(args: Args, ctx: impl term::Context) -> anyhow::Result<()> { let profile = ctx.profile()?; let mut node = radicle::Node::new(profile.socket()); - for rid in options.rids { + for rid in args.rids { delete(rid, &mut node, &profile)?; }