Skip to content

Commit 6382bb7

Browse files
committed
ran black-format to fix codestyle failure
1 parent e740967 commit 6382bb7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/unit/sagemaker/local/test_local_entities.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,9 @@ def test_start_local_pipeline_with_wrong_parameter_type(sagemaker_local_session)
291291
local_pipeline = sagemaker.local.entities._LocalPipeline(pipeline)
292292
with pytest.raises(ClientError) as error:
293293
local_pipeline.start(PipelineParameters={"MyStr": True})
294-
expected_error_pattern = r"Unexpected type for parameter 'MyStr'\. Expected .* but found <class 'bool'>\."
294+
expected_error_pattern = (
295+
r"Unexpected type for parameter 'MyStr'\. Expected .* but found <class 'bool'>\."
296+
)
295297
assert re.search(expected_error_pattern, str(error.value))
296298

297299

0 commit comments

Comments
 (0)