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 ce19fed commit 07c5216Copy full SHA for 07c5216
launch_ros/launch_ros/utilities/to_parameters_list.py
@@ -46,7 +46,7 @@ def to_parameters_list(
46
if isinstance(params_set_or_path, pathlib.Path):
47
with open(str(params_set_or_path), 'r') as f:
48
params_set = evaluate_parameter_dict(
49
- context, normalize_parameter_dict(yaml.load(f))
+ context, normalize_parameter_dict(yaml.safe_load(f))
50
)
51
else:
52
params_set = params_set_or_path
0 commit comments