Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/roswire/ros1/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ def from_dict(cls, d: Dict[str, Any]) -> "FormatDatabase":
"""Loads a format database from a JSON document."""
msg = {MsgFormat.from_dict(dd) for dd in d["messages"]}
srv = {SrvFormat.from_dict(dd) for dd in d["services"]}

action = {ROS1ActionFormat.from_dict(dd) for dd in d["actions"]}
return cls(msg, srv, action)
1 change: 1 addition & 0 deletions test/test_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
)
from roswire.ros1 import ROS1ActionFormat, ROS1PackageDatabase, ROS1FormatDatabase


import dockerblade


Expand Down