Skip to content

Commit

Permalink
Fix incorrect type hint in pywalk
Browse files Browse the repository at this point in the history
  • Loading branch information
Flova committed Sep 25, 2024
1 parent 8c5fb4e commit f86f836
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


class PyWalk:
def __init__(self, namespace="", parameters: [Parameter] | None = None, set_force_smooth_step_transition=False):
def __init__(self, namespace="", parameters: list[Parameter] | None = None, set_force_smooth_step_transition=False):
serialized_parameters = []
if parameters is not None:
for parameter in parameters:
Expand Down

0 comments on commit f86f836

Please sign in to comment.