From a50734d58878876033cf49dbd332372b7fce8757 Mon Sep 17 00:00:00 2001 From: Shane Loretz Date: Mon, 14 Oct 2024 19:11:59 -0700 Subject: [PATCH] Fix indentation Signed-off-by: Shane Loretz --- .../Migrating-from-ROS1/Migrating-Python-Package-Example.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/How-To-Guides/Migrating-from-ROS1/Migrating-Python-Package-Example.rst b/source/How-To-Guides/Migrating-from-ROS1/Migrating-Python-Package-Example.rst index a52dc1019f..d5a03dcc6c 100644 --- a/source/How-To-Guides/Migrating-from-ROS1/Migrating-Python-Package-Example.rst +++ b/source/How-To-Guides/Migrating-from-ROS1/Migrating-Python-Package-Example.rst @@ -852,7 +852,7 @@ Your refactored code might look like this: with rclpy.init(): rclpy.spin(Talker()) except (ExternalShutdownException, KeyboardInterrupt): - pass + pass Conclusion ----------