From e431a07258534b679055c1d349fced254986cf01 Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 3 Jul 2019 13:56:11 +0200 Subject: [PATCH] fix prev: conditional import / type hint failure --- electrum/address_synchronizer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/address_synchronizer.py b/electrum/address_synchronizer.py index 40a8a5e58..843f3679f 100644 --- 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)