Skip to content

Commit 9a2311d

Browse files
authored
Merge branch 'feature/python_events_executore' into feature/behavior_optimizations
2 parents 75b7aa3 + 80fe7c3 commit 9a2311d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bitbots_navigation/bitbots_localization_handler/bitbots_localization_handler/localization_handler.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ def main(args=None):
6565
node.create_timer(1 / 25.0, dsd.update, callback_group=MutuallyExclusiveCallbackGroup())
6666

6767
# Create executor
68-
multi_executor = EventsExecutor()
69-
multi_executor.add_node(node)
68+
executor = EventsExecutor()
69+
executor.add_node(node)
7070

7171
# Spin the executor
7272
try:
73-
multi_executor.spin()
73+
executor.spin()
7474
except KeyboardInterrupt:
7575
pass
7676

0 commit comments

Comments
 (0)