Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ dependencies = [
"packaging==25.0",
"platformdirs==4.5.1",
"pyserial==3.5",
"python-socketio[asyncio_client]==5.15.0",
"python-socketio[asyncio_client]==5.15.1",
"requests==2.32.5",
"sensapex==1.400.4",
"sensapex==1.504.1",
"rich==14.2.0",
"vbl-aquarium==1.1.0"
]
Expand Down
2 changes: 1 addition & 1 deletion src/ephys_link/bindings/ump_binding.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ async def set_depth(self, manipulator_id: str, depth: float, speed: float) -> fl

@override
async def stop(self, manipulator_id: str) -> None:
self._get_device(manipulator_id).stop()
self._get_device(manipulator_id).stop() # pyright: ignore [reportUnknownMemberType]

@override
def platform_space_to_unified_space(self, platform_space: Vector4) -> Vector4:
Expand Down