Skip to content

Commit 5847d77

Browse files
committed
Fix: typo when calling parameter, parameter is now actually referenced.
1 parent 251e2de commit 5847d77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wroboclaw/roboclaw/mock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self):
1818
def set_enc_left_max_speed(self, max_speed: int):
1919
self._left_max_speed = max_speed
2020

21-
def set_enc_right_max_speed(self, max_enc_speed: int):
21+
def set_enc_right_max_speed(self, max_speed: int):
2222
self._right_max_speed = max_speed
2323

2424
def write_speed(self, spd_l: Optional[int] = None, spd_r: Optional[int] = None):

0 commit comments

Comments
 (0)