Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW
Fintan Halpenny committed 6 months ago
commit c6be780fa35a267a93a4ccc54570068db64b4676
parent 69d22dcd52aba94ed9f2ef82f452c912bbd1e047
1 file changed +2 -2
modified crates/radicle-cli/src/commands/id/args.rs
@@ -43,7 +43,7 @@ impl Payload {
    /// Parses the list of all payload values that were aggregated by `clap`.
    /// E.g. `--payload key name value --payload key name value` will result
    /// in `["key","name","value","key","name","value"]`.
-
    pub fn try_parse_many(values: &[String]) -> Result<Vec<Self>, PayloadParseError> {
+
    pub(super) fn try_parse_many(values: &[String]) -> Result<Vec<Self>, PayloadParseError> {
        // `clap` makes sure we don't have 3 values per option occurence, so we can just
        // chunk the aggregated list
        values
@@ -100,7 +100,7 @@ pub struct Args {
    /// Don’t ask for confirmation
    #[arg(long)]
    #[arg(global = true)]
-
    pub(super) no_confirm: bool,
+
    no_confirm: bool,

    /// Suppress output
    #[arg(long, short)]