Skip to content

Commit c581cb3

Browse files
authored
remove useless variable (#37)
* Update wallet.py * Update build.yml
1 parent 27a0b58 commit c581cb3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414
strategy:
1515
matrix:
16-
python_version: ["3.6", "3.7", "3.8", "3.9.0-rc.1"]
16+
python_version: ["3.6", "3.7", "3.8", "3.9"]
1717

1818
runs-on: ubuntu-latest
1919

bip44/wallet.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ def __init__(self, mnemonic: str, language: str = "english", passphrase: str = "
1717
:param language (str, optional): The mnemonic's language, default: "english"
1818
:param passphrase (str, optional): The mnemonic's passphrase, default: ""
1919
"""
20-
self._mnemonic = mnemonic
2120
self._seed = Mnemonic(language).to_seed(mnemonic, passphrase)
2221
self._bip32 = BIP32.from_seed(self._seed)
2322

0 commit comments

Comments
 (0)