Browse Source

fix prev: conditional import / type hint failure

master
SomberNight 7 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