Skip to content

Commit

Permalink
chore: use Vector4 in dimensions for Ephys Link (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjy5 authored Mar 21, 2024
1 parent c3275ff commit 794a44e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/vbl_aquarium/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.7"
__version__ = "0.0.8"
6 changes: 3 additions & 3 deletions src/vbl_aquarium/models/ephys_link.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ class GetManipulatorsResponse(VBLBaseModel):
:type manipulators: list[str]
:param num_axes: Number of axes for the manipulators.
:type num_axes: int
:param dimensions: Dimensions of the manipulators (first 3 axes in unified manipulator space).
:type dimensions: Vector3
:param dimensions: Dimensions of the manipulators (3-axis manipulators should set w to 0).
:type dimensions: Vector4
:param error: Error message if any.
:type error: str
"""

manipulators: list[str] = Field(default_factory=list)
num_axes: int = Field(default=0, ge=-1)
dimensions: Vector3 = Vector3()
dimensions: Vector4 = Vector4()
error: str = ""


Expand Down

0 comments on commit 794a44e

Please sign in to comment.