Skip to content

Commit f86f836

Browse files
committed
Fix incorrect type hint in pywalk
1 parent 8c5fb4e commit f86f836

File tree

1 file changed

+1
-1
lines changed
  • bitbots_motion/bitbots_quintic_walk/bitbots_quintic_walk_py

1 file changed

+1
-1
lines changed

bitbots_motion/bitbots_quintic_walk/bitbots_quintic_walk_py/py_walk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
class PyWalk:
14-
def __init__(self, namespace="", parameters: [Parameter] | None = None, set_force_smooth_step_transition=False):
14+
def __init__(self, namespace="", parameters: list[Parameter] | None = None, set_force_smooth_step_transition=False):
1515
serialized_parameters = []
1616
if parameters is not None:
1717
for parameter in parameters:

0 commit comments

Comments
 (0)