summaryrefslogtreecommitdiff
path: root/tests/test_controller.py
diff options
context:
space:
mode:
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()