Skip to content

Commit

Permalink
[jsk_rqt_plugins] Fix yaml load in tabbed_button_general.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanazawanaoaki committed Jan 18, 2024
1 parent 29fac6c commit cb306d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def __init__(self, settings):
resolved_yaml = resolved_yaml[len("file://"):]

with open(resolved_yaml) as f:
yaml_data = yaml.load(f)
yaml_data = yaml.safe_load(f)
self.setupButtons_with_yaml_data(yaml_data=yaml_data, namespace=namespace)

self.show()

0 comments on commit cb306d3

Please sign in to comment.