Skip to content

Commit

Permalink
fix: remove the color flag as it doesn't exist on 16 & 18
Browse files Browse the repository at this point in the history
  • Loading branch information
tomli380576 committed Dec 4, 2024
1 parent c00d6fe commit bfedca0
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions checkbox-support/checkbox_support/parsers/v4l2_compliance.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,12 +131,7 @@ def parse_v4l2_compliance(
"""

out = sp.run(
[
"v4l2-compliance",
*(["-d", str(device)] if device else []),
"-C",
"never", # dont show colors
],
["v4l2-compliance", *(["-d", str(device)] if device else [])],
universal_newlines=True,
stdout=sp.PIPE,
stderr=sp.PIPE,
Expand Down

0 comments on commit bfedca0

Please sign in to comment.