From 8ccbab73929ffc734851b0733d1b2467412e38e4 Mon Sep 17 00:00:00 2001 From: piotr-roslaniec <39299780+piotr-roslaniec@users.noreply.github.com> Date: Wed, 27 Sep 2023 09:32:56 +0200 Subject: [PATCH] fix(bindings): fix python stubs --- ferveo-python/ferveo/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ferveo-python/ferveo/__init__.pyi b/ferveo-python/ferveo/__init__.pyi index ff17fd19..77c1746e 100644 --- a/ferveo-python/ferveo/__init__.pyi +++ b/ferveo-python/ferveo/__init__.pyi @@ -224,7 +224,7 @@ def encrypt(message: bytes, aad: bytes, dkg_public_key: DkgPublicKey) -> Ciphert def combine_decryption_shares_simple( decryption_shares: Sequence[DecryptionShareSimple], -) -> bytes: +) -> SharedSecret: ...