1
0

fix prev: conditional import / type hint failure

This commit is contained in:
SomberNight
2019-07-03 13:56:11 +02:00
parent d293b2e038
commit e431a07258

View File

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