Skip to content

Commit

Permalink
Small fix in BrachioGraph init (#117)
Browse files Browse the repository at this point in the history
Fixed the typo in the init code where `servo_2_parked_pw` was set from `servo_1_parked_pw` variable
  • Loading branch information
weirdvic committed Oct 30, 2022
1 parent 1e8e2e7 commit b1dd2df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brachiograph.py
Expand Up @@ -55,7 +55,7 @@ def __init__(
super().__init__(
bounds=bounds,
servo_1_parked_pw=servo_1_parked_pw,
servo_2_parked_pw=servo_1_parked_pw,
servo_2_parked_pw=servo_2_parked_pw,
servo_1_degree_ms=servo_1_degree_ms,
servo_2_degree_ms=servo_2_degree_ms,
servo_1_parked_angle=servo_1_parked_angle,
Expand Down

0 comments on commit b1dd2df

Please sign in to comment.