Skip to content

Commit 4e3a96c

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 76ac83e commit 4e3a96c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ def test_h264_decoder():
127127

128128
decoding_thread.join(timeout=5.0)
129129

130-
assert (
131-
len(decoder.decoded_frames) > 0
132-
), "No frames were decoded from the H.264 stream."
130+
assert len(decoder.decoded_frames) > 0, (
131+
"No frames were decoded from the H.264 stream."
132+
)
133133

134134
frame = decoder.decoded_frames[0]
135135
assert isinstance(frame, np.ndarray), "Decoded frame is not a numpy array."

0 commit comments

Comments
 (0)