Skip to content

Commit 9e8e263

Browse files
authored
Resolve conflicts.
1 parent b0477d4 commit 9e8e263

File tree

2 files changed

+1
-24
lines changed

2 files changed

+1
-24
lines changed

controller_manager/controller_manager/__init__.py

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -26,26 +26,14 @@
2626
)
2727

2828
__all__ = [
29-
<<<<<<< HEAD
3029
'configure_controller',
3130
'list_controller_types',
3231
'list_controllers',
3332
'list_hardware_components',
3433
'list_hardware_interfaces',
3534
'load_controller',
3635
'reload_controller_libraries',
36+
'set_hardware_component_state',
3737
'switch_controllers',
3838
'unload_controller',
39-
=======
40-
"configure_controller",
41-
"list_controller_types",
42-
"list_controllers",
43-
"list_hardware_components",
44-
"list_hardware_interfaces",
45-
"load_controller",
46-
"reload_controller_libraries",
47-
"set_hardware_component_state",
48-
"switch_controllers",
49-
"unload_controller",
50-
>>>>>>> 937817c (add spawner for hardware (#941))
5139
]

controller_manager/controller_manager/controller_manager_services.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
<<<<<<< HEAD
16-
from controller_manager_msgs.srv import ConfigureController, \
17-
ListControllers, ListControllerTypes, ListHardwareComponents, ListHardwareInterfaces, \
18-
LoadController, ReloadControllerLibraries, SwitchController, UnloadController
19-
=======
2015
from controller_manager_msgs.srv import (
2116
ConfigureController,
2217
ListControllers,
@@ -29,7 +24,6 @@
2924
SwitchController,
3025
UnloadController,
3126
)
32-
>>>>>>> 937817c (add spawner for hardware (#941))
3327

3428
import rclpy
3529

@@ -99,10 +93,6 @@ def reload_controller_libraries(node, controller_manager_name, force_kill):
9993
ReloadControllerLibraries, request)
10094

10195

102-
<<<<<<< HEAD
103-
def switch_controllers(node, controller_manager_name, deactivate_controllers,
104-
activate_controllers, strict, activate_asap, timeout):
105-
=======
10696
def set_hardware_component_state(node, controller_manager_name, component_name, lifecyle_state):
10797
request = SetHardwareComponentState.Request()
10898
request.name = component_name
@@ -124,7 +114,6 @@ def switch_controllers(
124114
activate_asap,
125115
timeout,
126116
):
127-
>>>>>>> 937817c (add spawner for hardware (#941))
128117
request = SwitchController.Request()
129118
request.activate_controllers = activate_controllers
130119
request.deactivate_controllers = deactivate_controllers

0 commit comments

Comments
 (0)