We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2caa624 commit 8e9013cCopy full SHA for 8e9013c
tests/test_video_stream.py
@@ -117,12 +117,15 @@ def get_test_video_params() -> List[VideoParameters]:
117
118
119
pytestmark = [
120
- pytest.mark.parametrize("vs_type", list(filter(lambda x: x is not None, [
121
- VideoStreamCv2,
122
- VideoStreamAv,
123
- VideoStreamMoviePy,
124
- VideoManager,
125
- ]))),
+ pytest.mark.parametrize(
+ "vs_type",
+ list(
+ filter(lambda x: x is not None, [
+ VideoStreamCv2,
+ VideoStreamAv,
126
+ VideoStreamMoviePy,
127
+ VideoManager,
128
+ ]))),
129
pytest.mark.filterwarnings(MOVIEPY_WARNING_FILTER),
130
]
131
0 commit comments