summaryrefslogtreecommitdiff
path: root/tests/test_controller.py
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2026-07-24 13:14:36 +0200
committerYuval Adam <_@yuv.al>2026-07-24 13:14:36 +0200
commitdf780f6aa210f0916323dd3eb925d762dbb0769d (patch)
tree6a23d3845a14c1b61052e47841b846058420650e /tests/test_controller.py
parentf2197687e18eb129fcf25462943aa75972560579 (diff)
Modernize GLib and D-Bus integrations
Diffstat (limited to 'tests/test_controller.py')
-rw-r--r--tests/test_controller.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_controller.py b/tests/test_controller.py
index 61c291e..b57cb69 100644
--- a/tests/test_controller.py
+++ b/tests/test_controller.py
@@ -55,7 +55,10 @@ class ControllerTests(unittest.TestCase):
received = []
controller = Controller(
self.config,
- on_transcript=lambda text, path: (received.append((text, path)), ready.set()),
+ on_transcript=lambda text, path: (
+ received.append((text, path)),
+ ready.set(),
+ ),
)
controller.recorder = FakeRecorder()
controller.transcriber = FakeTranscriber()