Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Jan 15, 2025
1 parent 20354d4 commit c34467b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions rerun_py/rerun_sdk/rerun/archetypes/transform3d_ext.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,13 @@ def __init__(

if clear:
self.__attrs_init__(
translation=translation or [],
rotation_axis_angle=rotation_axis_angle or [],
quaternion=quaternion or [],
scale=scale or [],
mat3x3=mat3x3 or [],
relation=relation or [],
axis_length=axis_length or [],
translation=translation if translation is not None else [],
rotation_axis_angle=rotation_axis_angle if rotation_axis_angle is not None else [],
quaternion=quaternion if quaternion is not None else [],
scale=scale if scale is not None else [],
mat3x3=mat3x3 if mat3x3 is not None else [],
relation=relation if relation is not None else [],
axis_length=axis_length if axis_length is not None else [],
)
else:
self.__attrs_init__(
Expand Down

0 comments on commit c34467b

Please sign in to comment.