Skip to content

Commit

Permalink
fix Pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ckeshava committed Nov 8, 2024
1 parent 69b5a1d commit 482e146
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions xrpl/wallet/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,9 @@ def __init__(
else:
wallet_algorithm = algorithm

"""
The core value that is used to derive all other information about
this wallet. MUST be kept secret!
"""
# `seed` is the core value that is used to derive all other information about
# this wallet. MUST be kept secret!

# Validate the seed before initialization of Wallet object
if seed is not None:
try:
Expand All @@ -89,7 +88,7 @@ def __init__(
+ wallet_algorithm
+ "\nError message: "
+ str(e)
)
) from e

self.seed = seed

Expand Down

0 comments on commit 482e146

Please sign in to comment.