Browse Source

fix: remove redundant else branch

master
Daniel 3 years ago
parent
commit
57d14765a8
No known key found for this signature in database
GPG Key ID: 3FB015F7E1AA3AFB
  1. 2
      jmclient/jmclient/wallet_rpc.py

2
jmclient/jmclient/wallet_rpc.py

@ -592,8 +592,6 @@ class JMWalletDaemon(Service):
# by the call to `check_cookie_if_present` above. # by the call to `check_cookie_if_present` above.
if self.taker is not None and not self.taker.aborted: if self.taker is not None and not self.taker.aborted:
schedule = self.taker.schedule schedule = self.taker.schedule
else:
schedule = None
else: else:
wallet_name = "not yet loaded" wallet_name = "not yet loaded"
else: else:

Loading…
Cancel
Save