Skip to content

Commit

Permalink
regen post rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Jun 13, 2023
1 parent a804b0a commit 261365f
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 34 deletions.
48 changes: 24 additions & 24 deletions rerun_py/rerun_sdk/rerun2/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,46 +3,46 @@
from __future__ import annotations

__all__ = [
"InstanceKey",
"InstanceKeyLike",
"InstanceKeyArray",
"InstanceKeyArrayLike",
"InstanceKeyType",
"ClassId",
"ClassIdArray",
"ClassIdArrayLike",
"ClassIdLike",
"ClassIdType",
"Color",
"ColorLike",
"ColorArray",
"ColorArrayLike",
"ColorLike",
"ColorType",
"DrawOrder",
"DrawOrderArray",
"DrawOrderArrayLike",
"DrawOrderLike",
"DrawOrderType",
"InstanceKey",
"InstanceKeyArray",
"InstanceKeyArrayLike",
"InstanceKeyLike",
"InstanceKeyType",
"KeypointId",
"KeypointIdArray",
"KeypointIdArrayLike",
"KeypointIdLike",
"KeypointIdType",
"Label",
"LabelLike",
"LabelArray",
"LabelArrayLike",
"LabelLike",
"LabelType",
"Point2D",
"Point2DLike",
"Point2DArray",
"Point2DArrayLike",
"Point2DLike",
"Point2DType",
"ClassId",
"ClassIdLike",
"ClassIdArray",
"ClassIdArrayLike",
"ClassIdType",
"Radius",
"RadiusLike",
"RadiusArray",
"RadiusArrayLike",
"RadiusLike",
"RadiusType",
"KeypointId",
"KeypointIdLike",
"KeypointIdArray",
"KeypointIdArrayLike",
"KeypointIdType",
"DrawOrder",
"DrawOrderLike",
"DrawOrderArray",
"DrawOrderArrayLike",
"DrawOrderType",
]

# NOTE: we use fully qualified paths to prevent lazy circular imports.
Expand Down
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/components/class_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["ClassId", "ClassIdLike", "ClassIdArray", "ClassIdArrayLike", "ClassIdType"]
__all__ = ["ClassId", "ClassIdArray", "ClassIdArrayLike", "ClassIdLike", "ClassIdType"]

from dataclasses import dataclass
from typing import Any, Sequence, Union
Expand Down
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/components/color.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["Color", "ColorLike", "ColorArray", "ColorArrayLike", "ColorType"]
__all__ = ["Color", "ColorArray", "ColorArrayLike", "ColorLike", "ColorType"]

from dataclasses import dataclass
from typing import Any, Sequence, Union
Expand Down
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/components/draw_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["DrawOrder", "DrawOrderLike", "DrawOrderArray", "DrawOrderArrayLike", "DrawOrderType"]
__all__ = ["DrawOrder", "DrawOrderArray", "DrawOrderArrayLike", "DrawOrderLike", "DrawOrderType"]

from dataclasses import dataclass
from typing import Any, Sequence, Union
Expand Down
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/components/instance_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["InstanceKey", "InstanceKeyLike", "InstanceKeyArray", "InstanceKeyArrayLike", "InstanceKeyType"]
__all__ = ["InstanceKey", "InstanceKeyArray", "InstanceKeyArrayLike", "InstanceKeyLike", "InstanceKeyType"]

from dataclasses import dataclass
from typing import Any, Sequence, Union
Expand Down
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/components/keypoint_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["KeypointId", "KeypointIdLike", "KeypointIdArray", "KeypointIdArrayLike", "KeypointIdType"]
__all__ = ["KeypointId", "KeypointIdArray", "KeypointIdArrayLike", "KeypointIdLike", "KeypointIdType"]

from dataclasses import dataclass
from typing import Any, Sequence, Union
Expand Down
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/components/label.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["Label", "LabelLike", "LabelArray", "LabelArrayLike", "LabelType"]
__all__ = ["Label", "LabelArray", "LabelArrayLike", "LabelLike", "LabelType"]

from dataclasses import dataclass
from typing import Any, Sequence, Union
Expand Down
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/components/point2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["Point2D", "Point2DLike", "Point2DArray", "Point2DArrayLike", "Point2DType"]
__all__ = ["Point2D", "Point2DArray", "Point2DArrayLike", "Point2DLike", "Point2DType"]

from dataclasses import dataclass
from typing import Any, Sequence, Tuple, Union
Expand Down
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/components/radius.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["Radius", "RadiusLike", "RadiusArray", "RadiusArrayLike", "RadiusType"]
__all__ = ["Radius", "RadiusArray", "RadiusArrayLike", "RadiusLike", "RadiusType"]

from dataclasses import dataclass
from typing import Any, Sequence, Union
Expand Down
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/datatypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["Vec2D", "Vec2DLike", "Vec2DArray", "Vec2DArrayLike", "Vec2DType"]
__all__ = ["Vec2D", "Vec2DArray", "Vec2DArrayLike", "Vec2DLike", "Vec2DType"]

# NOTE: we use fully qualified paths to prevent lazy circular imports.
from rerun2.datatypes.vec2d import Vec2D, Vec2DArray, Vec2DArrayLike, Vec2DLike, Vec2DType
2 changes: 1 addition & 1 deletion rerun_py/rerun_sdk/rerun2/datatypes/vec2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

__all__ = ["Vec2D", "Vec2DLike", "Vec2DArray", "Vec2DArrayLike", "Vec2DType"]
__all__ = ["Vec2D", "Vec2DArray", "Vec2DArrayLike", "Vec2DLike", "Vec2DType"]

from dataclasses import dataclass
from typing import Any, Sequence, Union
Expand Down

0 comments on commit 261365f

Please sign in to comment.