We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcc2c3e commit 104c3f3Copy full SHA for 104c3f3
ros2_ws/src/rcdt_utilities/rcdt_utilities/register.py
@@ -110,7 +110,9 @@ def next(*_: Any) -> LaunchDescription:
110
return LaunchDescription([])
111
item = Register.register.pop(1)
112
log_progress(item.action)
113
- return LaunchDescription([item.action])
+ if item.action:
114
+ return LaunchDescription([item.action])
115
+ return LaunchDescription([])
116
117
@staticmethod
118
def group(
0 commit comments