Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagocoutinho committed Apr 7, 2024
1 parent 7bc157f commit 204a581
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import os
import subprocess
from contextlib import ExitStack, contextmanager
from errno import EINVAL
from errno import EINVAL, ENODATA
from functools import cache
from inspect import isgenerator
from math import isclose
Expand Down Expand Up @@ -348,7 +348,7 @@ def _(camera=hardware):
def _(camera=hardware):
device = Device(camera.filename)
with device:
device.set_format(BufferType.VIDEO_CAPTURE, 7, 5, 'pRCC')
device.set_format(BufferType.VIDEO_CAPTURE, 7, 5, "pRCC")
assert camera.ioctl_ioc == raw.IOC.S_FMT
assert camera.ioctl_arg.fmt.pix.height == 5
assert camera.ioctl_arg.fmt.pix.width == 7
Expand Down

0 comments on commit 204a581

Please sign in to comment.