Skip to content

Commit adceae6

Browse files
committed
fix: fixes yaml build for 2x base
1 parent 31a9b49 commit adceae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/args/group.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ impl<'a> ArgGroup<'a> {
112112
a
113113
}
114114
"arg" => {
115-
if let Some(ys) = v.as_str().unwrap() {
115+
if let Some(ys) = v.as_str() {
116116
a = a.arg(ys);
117117
}
118118
a

0 commit comments

Comments
 (0)