You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
panic!("Command::get_arg_conflicts_with: The passed arg conflicts with an arg unknown to the cmd");
4049
+
panic!(
4050
+
"Command::get_arg_conflicts_with: The passed arg conflicts with an arg unknown to the cmd"
4051
+
);
4046
4052
}
4047
4053
}
4048
4054
result
@@ -4696,11 +4702,12 @@ impl Command {
4696
4702
.map(|arg| arg.get_id().clone())
4697
4703
.collect();
4698
4704
4699
-
debug_assert!(args_missing_help.is_empty(),
4700
-
"Command::help_expected is enabled for the Command {}, but at least one of its arguments does not have either `help` or `long_help` set. List of such arguments: {}",
4701
-
self.name,
4702
-
args_missing_help.join(", ")
4703
-
);
4705
+
debug_assert!(
4706
+
args_missing_help.is_empty(),
4707
+
"Command::help_expected is enabled for the Command {}, but at least one of its arguments does not have either `help` or `long_help` set. List of such arguments: {}",
0 commit comments