Skip to content

Commit 7724553

Browse files
style: format code with Black
This commit fixes the style issues introduced in 5b2c2a7 according to the output from Black. Details: #180
1 parent 5b2c2a7 commit 7724553

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_main.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,9 @@ def test_video_command_linux(self, mock_input, mock_print, mock_subprocess):
311311
# Verify video command was processed - either video text printed or subprocess called
312312
video_text_found = any("Video" in str(call) for call in printed_output)
313313
subprocess_was_called = mock_subprocess.called
314-
assert video_text_found or subprocess_was_called, "Video command should print text or call subprocess"
314+
assert (
315+
video_text_found or subprocess_was_called
316+
), "Video command should print text or call subprocess"
315317

316318

317319
class TestWelcomeScreen:

0 commit comments

Comments
 (0)