Skip to content

Commit be7591c

Browse files
Maxtho8sameo
authored andcommitted
fix : remove None
We remove none and return values. Signed-off-by: Maxime <maxime.pizzolitto.82@gmail.com>
1 parent d279437 commit be7591c

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

controller/lib/src/etcd/mod.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ impl EtcdClient {
5252
values.push(value.to_string());
5353
}
5454
}
55-
Some(values)
56-
});
57-
None
55+
values
56+
})
5857
}
5958
}
6059
/*

0 commit comments

Comments
 (0)