trim line for pylint
This commit is contained in:
parent
8b9c6f5315
commit
87b6eeeef5
1 changed files with 2 additions and 1 deletions
|
@ -1757,7 +1757,8 @@ class Daemon(AuthJSONRPCServer):
|
||||||
raise Exception("Invalid bid")
|
raise Exception("Invalid bid")
|
||||||
|
|
||||||
if bid >= self.session.wallet.get_balance():
|
if bid >= self.session.wallet.get_balance():
|
||||||
raise InsufficientFundsError("Insufficient funds. Make sure you have enough LBC to deposit")
|
raise InsufficientFundsError('Insufficient funds. ' \
|
||||||
|
'Make sure you have enough LBC to deposit')
|
||||||
|
|
||||||
metadata = metadata or {}
|
metadata = metadata or {}
|
||||||
if fee is not None:
|
if fee is not None:
|
||||||
|
|
Loading…
Reference in a new issue