Browse Source

fix prev: conditional import / type hint failure

dependabot/pip/contrib/deterministic-build/ecdsa-0.13.3
SomberNight 6 years ago
parent
commit
e431a07258
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 2
      electrum/address_synchronizer.py

2
electrum/address_synchronizer.py

@ -60,7 +60,7 @@ class AddressSynchronizer(Logger):
inherited by wallet
"""
def __init__(self, db: JsonDB):
def __init__(self, db: 'JsonDB'):
self.db = db
self.network = None # type: Network
Logger.__init__(self)

Loading…
Cancel
Save