From 42ec0e4e9d8741fe9f9f1a3f5f42bddc0d208826 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 19 Apr 2023 22:31:08 +0000 Subject: [PATCH] slip39: fix incorrect type hint --- electrum/slip39.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/slip39.py b/electrum/slip39.py index ab07fb486..6a889d476 100644 --- a/electrum/slip39.py +++ b/electrum/slip39.py @@ -278,7 +278,7 @@ def get_wordlist() -> Wordlist: return wordlist -def process_mnemonics(mnemonics: List[str]) -> Tuple[bool, str]: +def process_mnemonics(mnemonics: List[str]) -> Tuple[Optional[EncryptedSeed], str]: # Collect valid shares. shares = [] for i, mnemonic in enumerate(mnemonics):