commit e431a07258534b679055c1d349fced254986cf01
parent d293b2e0386765b6c2f6fbedb440a57dd17233bc
Author: SomberNight <somber.night@protonmail.com>
Date: Wed, 3 Jul 2019 13:56:11 +0200
fix prev: conditional import / type hint failure
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/address_synchronizer.py b/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)