Skip to content

Commit 96026df

Browse files
committed
style: fix ruff formatting in test file
1 parent a6855fe commit 96026df

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

modules/sagemaker/sagemaker-templates/templates/model_deploy/seed_code/deploy_app/tests/test_synth_s3_permissions.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@
4343
# Stub out the get_approved_package module before it tries to create a boto3 client.
4444
# The module creates a boto3.client("sagemaker") at import time, so we must
4545
# intercept it before deploy_endpoint_stack imports it.
46-
_fake_get_approved = MagicMock(
47-
return_value="arn:aws:sagemaker:us-east-1:111111111111:model-package/test-group/1"
48-
)
46+
_fake_get_approved = MagicMock(return_value="arn:aws:sagemaker:us-east-1:111111111111:model-package/test-group/1")
4947
_fake_module = MagicMock()
5048
_fake_module.get_approved_package = _fake_get_approved
5149
sys.modules["deploy_app.get_approved_package"] = _fake_module

0 commit comments

Comments
 (0)