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_transcription.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'tests/test_transcription.py') diff --git a/tests/test_transcription.py b/tests/test_transcription.py index 916aac2..e79bb2b 100644 --- a/tests/test_transcription.py +++ b/tests/test_transcription.py @@ -6,11 +6,13 @@ from parley.transcription import parse_jsonl class ParseJsonlTests(unittest.TestCase): def test_skips_header_and_malformed_lines(self) -> None: - output = '\n'.join([ - 'runtime diagnostic', - '{"type":"batch_header","count":1}', - '{"file":"recording.wav","text":"hello world"}', - ]) + output = "\n".join( + [ + "runtime diagnostic", + '{"type":"batch_header","count":1}', + '{"file":"recording.wav","text":"hello world"}', + ] + ) self.assertEqual(parse_jsonl(output), "hello world") def test_reports_error_row(self) -> None: -- cgit v1.3.1