Skip to content

Commit

Permalink
Fix PEP8 violations
Browse files Browse the repository at this point in the history
  • Loading branch information
ebellocchia committed Oct 13, 2021
1 parent 03b0d83 commit 019c381
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion py_crypto_hd_wallet/monero/hd_wallet_monero_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ def CreateRandom(self,
HdWalletBase object: HdWalletBase object
Raises:
TypeError: If words number is not a HdWalletMoneroWordsNum enum or language is not a HdWalletMoneroLanguages enum
TypeError: If words number is not a HdWalletMoneroWordsNum enum or
language is not a HdWalletMoneroLanguages enum
"""
if not isinstance(words_num, HdWalletMoneroWordsNum):
raise TypeError("Words number is not an enumerative of HdWalletMoneroWordsNum")
Expand Down
3 changes: 2 additions & 1 deletion py_crypto_hd_wallet/substrate/hd_wallet_substrate_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ def CreateRandom(self,
HdWalletBase object: HdWalletBase object
Raises:
TypeError: If words number is not a HdWalletSubstrateWordsNum enum or language is not a HdWalletSubstrateLanguages enum
TypeError: If words number is not a HdWalletSubstrateWordsNum enum or
language is not a HdWalletSubstrateLanguages enum
"""
if not isinstance(words_num, HdWalletSubstrateWordsNum):
raise TypeError("Words number is not an enumerative of HdWalletSubstrateWordsNum")
Expand Down

0 comments on commit 019c381

Please sign in to comment.