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 a2c577edc154fe70a82cd19b6a23ba4a29e76e95
parent f27f69e9a00f4dc33f9c74327d2d3dfe62a14322
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)]