Skip to content

Commit

Permalink
Fix prospector error
Browse files Browse the repository at this point in the history
  • Loading branch information
ebellocchia committed Apr 24, 2024
1 parent 9a85c4c commit 1114bf7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion bip_utils/bip/bip39/bip39_seed_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ def __init__(self,
Raises:
ValueError: If the mnemonic is not valid
"""
super().__init__(mnemonic, lang)

# Make sure that the given mnemonic is valid
Bip39MnemonicValidator(lang).Validate(mnemonic)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ def __init__(self,
Raises:
ValueError: If the mnemonic is not valid
"""
super().__init__(mnemonic, lang)

self.m_entropy_bytes = Bip39MnemonicDecoder(lang).Decode(mnemonic)

def Generate(self,
Expand Down

0 comments on commit 1114bf7

Please sign in to comment.