Skip to content

Commit

Permalink
Line length
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminwp18 committed Mar 28, 2024
1 parent 43b10a9 commit 8f68230
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mqtt_ros_bridge/bridge_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def mqtt_callback(self, _client: MQTT.Client,
try:
ros_msg = topic_info.serializer.deserialize(mqtt_msg.payload, topic_info.msg_type)
except RMWError:
self.get_logger().info('Dropping message with bad serialization received' +
f'from MQTT on topic "{mqtt_msg.topic}": "{mqtt_msg.payload!r}"')
self.get_logger().info('Dropping message with bad serialization received from' +
f'MQTT on topic "{mqtt_msg.topic}": "{mqtt_msg.payload!r}"')
return

self.ros_publishers[topic_info.name].publish(ros_msg)
Expand Down

0 comments on commit 8f68230

Please sign in to comment.