Skip to content

Commit 104c3f3

Browse files
committed
Fix ty.
Signed-off-by: Jelmer de Wolde <[email protected]>
1 parent bcc2c3e commit 104c3f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ros2_ws/src/rcdt_utilities/rcdt_utilities/register.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ def next(*_: Any) -> LaunchDescription:
110110
return LaunchDescription([])
111111
item = Register.register.pop(1)
112112
log_progress(item.action)
113-
return LaunchDescription([item.action])
113+
if item.action:
114+
return LaunchDescription([item.action])
115+
return LaunchDescription([])
114116

115117
@staticmethod
116118
def group(

0 commit comments

Comments
 (0)