1
0

swaps.py: (trivial) fix stale type-hint

This commit is contained in:
SomberNight
2025-04-17 17:13:21 +00:00
parent 3eac741947
commit 5f83fffd2e

View File

@@ -50,7 +50,7 @@ from .lnsweep import SweepInfo
if TYPE_CHECKING:
from .network import Network
from .wallet import Abstract_Wallet
from .lnwatcher import LNWalletWatcher
from .lnwatcher import LNWatcher
from .lnworker import LNWallet
from .lnchannel import Channel
from .simple_config import SimpleConfig
@@ -175,7 +175,7 @@ class SwapData(StoredObject):
class SwapManager(Logger):
network: Optional['Network'] = None
lnwatcher: Optional['LNWalletWatcher'] = None
lnwatcher: Optional['LNWatcher'] = None
def __init__(self, *, wallet: 'Abstract_Wallet', lnworker: 'LNWallet'):
Logger.__init__(self)