Skip to content

Commit e5bdc87

Browse files
committed
Yet Another Lint Fix
1 parent 5134639 commit e5bdc87

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

tests/unit/test_processing.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
from __future__ import absolute_import
1414

1515
import copy
16+
from textwrap import dedent
1617

1718
import pytest
1819
from mock import Mock, patch, MagicMock
1920
from packaging import version
20-
from textwrap import dedent
2121

2222
from sagemaker import LocalSession
2323
from sagemaker.dataset_definition.inputs import (
@@ -1122,12 +1122,8 @@ def test_get_codeartifact_command(pipeline_session):
11221122
codeartifact_repo_arn=codeartifact_repo_arn
11231123
)
11241124

1125-
assert (
1126-
codeartifact_command == (
1127-
"aws codeartifact login --tool pip --domain test-domain ",
1128-
"--domain-owner 012345678901 --repository test-repository --region us-west-2"
1129-
)
1130-
)
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
11311127

11321128

11331129
@patch("sagemaker.workflow.utilities._pipeline_config", MOCKED_PIPELINE_CONFIG)

0 commit comments

Comments
 (0)