From 8c86cab3724a2c6c60348a13d8a93f3652507920 Mon Sep 17 00:00:00 2001 From: James Price Date: Mon, 29 Jun 2026 02:00:08 +0200 Subject: [PATCH] fix --- src/piv.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/piv.rs b/src/piv.rs index df611ea..4127c63 100644 --- a/src/piv.rs +++ b/src/piv.rs @@ -569,7 +569,8 @@ impl Key { Ok(cert) => keys.push(Key { slot, cert }), Err(Error::InvalidObject) => {} // skip slots we can't parse (e.g. Ed25519) Err(other) => return Err(other), - } + } + } } Ok(keys)