We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63204a6 commit 1db1d2dCopy full SHA for 1db1d2d
controller_manager/controller_manager/launch_utils.py
@@ -122,7 +122,7 @@ def generate_controllers_spawner_launch_description_from_dict(
122
"""
123
if not type(controller_info_dict) is dict:
124
raise ValueError(f"Invalid controller_info_dict type parsed {controller_info_dict}")
125
- controller_names = controller_info_dict.keys()
+ controller_names = list(controller_info_dict.keys())
126
controller_params_files = []
127
for controller_name in controller_names:
128
controller_params_file = controller_info_dict[controller_name]
0 commit comments