Skip to content

Commit bf23ace

Browse files
committed
Lint fix
1 parent 5ac1783 commit bf23ace

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

rosbridge_library/src/rosbridge_library/internal/services.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
import time
3434
from threading import Thread
35-
from typing import Any, Callable, Optional, Union
35+
from typing import Any, Callable, Optional
3636

3737
import rclpy
3838
from rclpy.callback_groups import ReentrantCallbackGroup

rosbridge_library/test/capabilities/test_action_capabilities.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,10 @@ def test_execute_advertised_action(self):
202202
self.assertEqual(self.received_message["op"], "action_result")
203203
self.assertEqual(self.received_message["values"]["result"]["sequence"], [0, 1, 1, 2, 3, 5])
204204

205-
@unittest.skip(
206-
reason="Currently fails in Iron/Rolling due to https://github.com/ros2/rclpy/issues/1195, need to fix this"
207-
)
208-
def test_cancel_advertised_action(self):
205+
@unittest.skip(
206+
reason="Currently fails in Iron/Rolling due to https://github.com/ros2/rclpy/issues/1195, need to fix this"
207+
)
208+
def test_cancel_advertised_action(self):
209209
# Advertise the action
210210
action_path = "/fibonacci_action_3"
211211
advertise_msg = loads(

0 commit comments

Comments
 (0)