From df780f6aa210f0916323dd3eb925d762dbb0769d Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 24 Jul 2026 13:14:36 +0200 Subject: Modernize GLib and D-Bus integrations --- tests/test_controller.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/test_controller.py') 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() -- cgit v1.3.1