Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ros2 formatdb #456

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
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