1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-02 04:18:20 +00:00

test: remove unused code

[no changelog]
This commit is contained in:
M1nd3r 2024-11-28 14:15:26 +01:00
parent c122018254
commit 1b832ea187

View File

@ -48,18 +48,6 @@ class BackgroundDeviceHandler:
self.client.watch_layout(True) self.client.watch_layout(True)
self.client.debug.input_wait_type = DebugWaitType.CURRENT_LAYOUT self.client.debug.input_wait_type = DebugWaitType.CURRENT_LAYOUT
def run(self, function: Callable[..., Any], *args: Any, **kwargs: Any) -> None:
"""Runs some function that interacts with a device.
Makes sure the UI is updated before returning.
"""
if self.task is not None:
raise RuntimeError("Wait for previous task first")
# wait for the first UI change triggered by the task running in the background
with self.debuglink().wait_for_layout_change():
self.task = self._pool.submit(function, self.client, *args, **kwargs)
def run_with_session( def run_with_session(
self, function: Callable[..., Any], *args: Any, **kwargs: Any self, function: Callable[..., Any], *args: Any, **kwargs: Any
) -> None: ) -> None: