1
0

qt,qml: move TaskThread to common_qt

This commit is contained in:
Sander van Grieken
2025-04-23 15:24:02 +02:00
parent 960e4ba583
commit c89e8f6f03
9 changed files with 95 additions and 163 deletions

View File

@@ -54,14 +54,13 @@ from .plugin import run_hook
from .logging import Logger
if TYPE_CHECKING:
from .gui.qt.util import TaskThread
from .plugins.hw_wallet import HW_PluginBase, HardwareClientBase, HardwareHandlerBase
from .gui.common_qt.util import TaskThread
from .hw_wallet import HW_PluginBase, HardwareClientBase, HardwareHandlerBase
from .wallet_db import WalletDB
from .plugin import Device
class CannotDerivePubkey(Exception): pass
class ScriptTypeNotSupported(Exception): pass