Skip to content

Commit d68b19c

Browse files
akuma12akrishna1995
authored andcommitted
Black fix
1 parent 01a82dc commit d68b19c

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/unit/test_processing.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,8 +1122,10 @@ def test_get_codeartifact_command(pipeline_session):
11221122
codeartifact_repo_arn=codeartifact_repo_arn
11231123
)
11241124

1125-
assert codeartifact_command == \
1126-
"aws codeartifact login --tool pip --domain test-domain --domain-owner 012345678901 --repository test-repository --region us-west-2" # noqa: E501
1125+
assert (
1126+
codeartifact_command
1127+
== "aws codeartifact login --tool pip --domain test-domain --domain-owner 012345678901 --repository test-repository --region us-west-2" # noqa: E501 # pylint: disable=line-too-long
1128+
)
11271129

11281130

11291131
@patch("sagemaker.workflow.utilities._pipeline_config", MOCKED_PIPELINE_CONFIG)
@@ -1228,7 +1230,7 @@ def test_generate_framework_script_with_codeartifact(pipeline_session):
12281230
fi
12291231
12301232
python process.py "$@"
1231-
""" # noqa: E501
1233+
""" # noqa: E501 # pylint: disable=line-too-long
12321234
)
12331235

12341236

0 commit comments

Comments
 (0)