Skip to content

Commit

Permalink
Small fix for modern flake8. (#539)
Browse files Browse the repository at this point in the history
It wants an additional space.

Signed-off-by: Chris Lalancette <clalancette@gmail.com>
  • Loading branch information
clalancette committed Mar 26, 2024
1 parent 243e491 commit 76057be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_communication/test/subscriber_py.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def listener(message_name, namespace):
node.destroy_node()
rclpy.shutdown()

assert len(received_messages) == len(expected_msgs),\
assert len(received_messages) == len(expected_msgs), \
'Should have received {} {} messages from talker'.format(len(expected_msgs), message_name)


Expand Down

0 comments on commit 76057be

Please sign in to comment.