Skip to content

Commit 8f25a60

Browse files
committed
chore: fix lint errors
1 parent 432bbb6 commit 8f25a60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/devices/traits/v1/test_maps.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async def test_refresh_maps_trait(
6464
# Setup mock to return the sample multi maps list
6565
mock_rpc_channel.send_command.side_effect = [
6666
mock_data.STATUS, # Initial status fetch
67-
MULTI_MAP_LIST_DATA
67+
MULTI_MAP_LIST_DATA,
6868
]
6969
await status_trait.refresh()
7070
# Populating the status information gives us the current map
@@ -99,7 +99,7 @@ async def test_refresh_maps_trait(
9999
assert mock_rpc_channel.send_command.call_count == 2
100100
mock_rpc_channel.send_command.assert_any_call(RoborockCommand.GET_STATUS)
101101
mock_rpc_channel.send_command.assert_any_call(RoborockCommand.GET_MULTI_MAPS_LIST)
102-
102+
103103

104104
async def test_set_current_map(
105105
status_trait: StatusTrait,

0 commit comments

Comments
 (0)