Skip to content

Commit 786f92e

Browse files
committed
chore: fix axes_count name
1 parent 3aa6691 commit 786f92e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/vbl_aquarium/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0b2"
1+
__version__ = "1.0.0b3"

src/vbl_aquarium/models/ephys_link.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ class PlatformInfo(VBLBaseModel):
4141
Attributes:
4242
name: Name of the manipulator platform.
4343
cli_name: CLI identifier for the manipulator platform (for the `-t` flag).
44-
num_axes: Number of axes on a manipulator.
44+
axes_count: Number of axes on a manipulator.
4545
dimensions: Dimensions of the manipulators (3-axis manipulators should set w to 0).
4646
"""
4747

4848
name: str = Field(min_length=1)
4949
cli_name: str = Field(min_length=1)
50-
num_axes: int = Field(default=0, ge=-1)
50+
axes_count: int = Field(default=0, ge=-1)
5151
dimensions: Vector4 = Vector4()
5252

5353

0 commit comments

Comments
 (0)