Skip to content

Commit

Permalink
Skip typecheck on opencv function
Browse files Browse the repository at this point in the history
  • Loading branch information
noemifrisina committed Jul 11, 2023
1 parent 724ca11 commit 32eef3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def onMouse(event, x, y, flags, param):

# Create window named OAV1view and set onmouse to this
cv.namedWindow("OAV1view")
cv.setMouseCallback("OAV1view", onMouse)
cv.setMouseCallback("OAV1view", onMouse) # type: ignore

print("Showing camera feed. Press escape to close")

Check warning on line 38 in src/mx_bluesky/I24/serial/fixed_target/i24ssx_moveonclick.py

View check run for this annotation

Codecov / codecov/patch

src/mx_bluesky/I24/serial/fixed_target/i24ssx_moveonclick.py#L36-L38

Added lines #L36 - L38 were not covered by tests
# Read captured video and store them in success and frame
Expand Down

0 comments on commit 32eef3f

Please sign in to comment.