Skip to content

Commit

Permalink
Fix pylints
Browse files Browse the repository at this point in the history
  • Loading branch information
zrezke committed Jun 9, 2024
1 parent a295e9f commit dcf6ccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rerun_py/depthai_viewer/log/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def log_encoded_image(
"""
image = np.array(image, copy=False)
tensor_height = height
if encoding == ImageEncoding.NV12 or encoding == ImageEncoding.Yuv420p:
if encoding == ImageEncoding.NV12: # or encoding == ImageEncoding.Yuv420p:
# TODO(filip): This doesn't seem to be completely true as the image is still displayed correctly
# tmp_height = int(height * 1.5)
# if tmp_height % 2 != 0:
Expand Down

0 comments on commit dcf6ccf

Please sign in to comment.