We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa6691 commit 786f92eCopy full SHA for 786f92e
src/vbl_aquarium/__about__.py
@@ -1 +1 @@
1
-__version__ = "1.0.0b2"
+__version__ = "1.0.0b3"
src/vbl_aquarium/models/ephys_link.py
@@ -41,13 +41,13 @@ class PlatformInfo(VBLBaseModel):
41
Attributes:
42
name: Name of the manipulator platform.
43
cli_name: CLI identifier for the manipulator platform (for the `-t` flag).
44
- num_axes: Number of axes on a manipulator.
+ axes_count: Number of axes on a manipulator.
45
dimensions: Dimensions of the manipulators (3-axis manipulators should set w to 0).
46
"""
47
48
name: str = Field(min_length=1)
49
cli_name: str = Field(min_length=1)
50
- num_axes: int = Field(default=0, ge=-1)
+ axes_count: int = Field(default=0, ge=-1)
51
dimensions: Vector4 = Vector4()
52
53
0 commit comments