From a02b752aaafec95dd4836bf895005ce887b047c6 Mon Sep 17 00:00:00 2001 From: NicolasCantu Date: Wed, 26 Mar 2025 12:39:57 +0100 Subject: [PATCH] Remove ? from Member::new() --- src/api.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api.rs b/src/api.rs index 85c3798..49bf4af 100644 --- a/src/api.rs +++ b/src/api.rs @@ -323,7 +323,7 @@ pub fn pair_device(process_id: String, mut sp_addresses: Vec) -> ApiResu .into_iter() .map(|a| TryInto::::try_into(a).unwrap()) .collect(), - )?, + ), ); Ok(())