From 76057be33c56baa0a401582e4e3fddfd106db61e Mon Sep 17 00:00:00 2001 From: Chris Lalancette Date: Tue, 26 Mar 2024 11:58:39 -0400 Subject: [PATCH] Small fix for modern flake8. (#539) It wants an additional space. Signed-off-by: Chris Lalancette --- test_communication/test/subscriber_py.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_communication/test/subscriber_py.py b/test_communication/test/subscriber_py.py index 48aa9b31..57d8d4cf 100644 --- a/test_communication/test/subscriber_py.py +++ b/test_communication/test/subscriber_py.py @@ -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)