Skip to content

Commit 7165108

Browse files
lint
Signed-off-by: Alexey Kudinkin <ak@anyscale.com>
1 parent e8b1f37 commit 7165108

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/ray/data/tests/test_autoscaler.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ def test_actor_pool_scaling():
6868
input_dependencies=[MagicMock()],
6969
internal_queue_num_blocks=MagicMock(return_value=1),
7070
)
71-
op_state = OpState(op, inqueues=[MagicMock(__len__=MagicMock(return_value=10), num_blocks=10)])
71+
op_state = OpState(
72+
op, inqueues=[MagicMock(__len__=MagicMock(return_value=10), num_blocks=10)]
73+
)
7274
op_state._scheduling_status = MagicMock(under_resource_limits=True)
7375

7476
@contextmanager

0 commit comments

Comments
 (0)