Skip to content

Commit 289baea

Browse files
committed
Fixed copilot suggestions
1 parent f76fa21 commit 289baea

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

scripts/move_tester.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
from vbl_aquarium.models.unity import Vector4
55

66
from ephys_link.back_end.platform_handler import PlatformHandler
7+
from ephys_link.bindings.mpm_binding import MPMBinding
78
from ephys_link.front_end.console import Console
89

910
c = Console(enable_debug=True)
10-
p = PlatformHandler(EphysLinkOptions(type="pathfinder-mpm"), c)
11+
p = PlatformHandler(MPMBinding(), c)
1112
# target = Vector4()
1213
target = Vector4(x=7.5, y=7.5, z=7.5, w=7.5)
1314

src/ephys_link/utils/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# Error messages
2929

3030
NO_SET_POSITION_WHILE_INSIDE_BRAIN_ERROR = (
31-
'Can not move manipulator while inside the brain. Set the depth ("set_depth") instead.'
31+
'Cannot move manipulator while inside the brain. Set the depth ("set_depth") instead.'
3232
)
3333

3434

0 commit comments

Comments
 (0)