I think we can replace resolve_message_type with the roslib function get_message_class. They both take a message type string and return the Python class for that message type.
from roslib.message import get_message_class
type_string = "std_msgs/Float32"
MsgType = get_message_class(type_string)
I think we can replace
resolve_message_type
with theroslib
functionget_message_class
. They both take a message type string and return the Python class for that message type.