Skip to content

Commit

Permalink
Add return type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
Flova committed Sep 26, 2024
1 parent 6f585a0 commit aaafcea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitbots_misc/bitbots_utils/bitbots_utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def set_parameters_of_other_node(
return [res.success for res in response.results]


def parse_parameter_dict(*, namespace, parameter_dict):
def parse_parameter_dict(*, namespace, parameter_dict) -> list[ParameterMsg]:
parameters = []
for param_name, param_value in parameter_dict.items():
full_param_name = namespace + param_name
Expand Down

0 comments on commit aaafcea

Please sign in to comment.