Skip to content

Commit 79ddb7e

Browse files
committed
Remove ,
1 parent 9ecc6fa commit 79ddb7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ros2_numpy/point_cloud2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def array_to_pointcloud2(cloud_arr, stamp=None, frame_id=None):
152152
cloud_msg.height = cloud_arr.shape[0]
153153
cloud_msg.width = cloud_arr.shape[1]
154154
cloud_msg.fields = dtype_to_fields(cloud_arr.dtype)
155-
cloud_msg.is_bigendian = sys.byteorder != 'little',
155+
cloud_msg.is_bigendian = sys.byteorder != 'little'
156156
cloud_msg.point_step = cloud_arr.dtype.itemsize
157157
cloud_msg.row_step = cloud_msg.point_step*cloud_arr.shape[1]
158158
cloud_msg.is_dense = \

0 commit comments

Comments
 (0)