Skip to content

Commit bec70a0

Browse files
committed
work around flake8 bug
1 parent 7860704 commit bec70a0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integ/sagemaker/serve/test_serve_js_deep_unit_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ def test_js_model_with_optimize_speculative_decoding_config_gated_requests_are_e
2525
sagemaker_session,
2626
):
2727
with (
28-
patch.object(Session, "create_model", return_value="mock_model") as mock_create_model,
28+
patch.object(
29+
Session, "create_model", return_value="mock_model"
30+
) as mock_create_model, # flake8: disable=E999
2931
patch.object(
3032
Session, "endpoint_from_production_variants"
3133
) as mock_endpoint_from_production_variants,

0 commit comments

Comments
 (0)