Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix ty.
Signed-off-by: Jelmer de Wolde <[email protected]>
  • Loading branch information
Jelmerdw committed Oct 21, 2025
commit 2c848793145329f09ab9b9c84ea38aadb8b6e8fa
4 changes: 3 additions & 1 deletion ros2_ws/src/rcdt_utilities/rcdt_utilities/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ def next(*_: Any) -> LaunchDescription:
return LaunchDescription([])
item = Register.register.pop(1)
log_progress(item.action)
return LaunchDescription([item.action])
if item.action:
return LaunchDescription([item.action])
return LaunchDescription([])

@staticmethod
def group(
Expand Down