Skip to content

Commit

Permalink
making pylint happier
Browse files Browse the repository at this point in the history
  • Loading branch information
vinitsuri-msft authored and zarenner committed May 15, 2019
1 parent 3280f55 commit e500d9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion azure-devops/azext_devops/dev/common/artifacttool.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ def upload_pipeline_artifact(self, organization, project, run_id, artifact_name,

def download_universal(self, organization, feed, package_name, package_version, path, fileFilter):
args = ["universal", "download", "--service", organization, "--patvar", ARTIFACTTOOL_PAT_ENVKEY,
"--feed", feed, "--package-name", package_name, "--package-version", package_version, "--path", path,
"--feed", feed, "--package-name", package_name, "--package-version", package_version,
"--path", path,
"--filter", fileFilter]
return self.run_artifacttool(organization, args, "Downloading")

Expand Down
2 changes: 1 addition & 1 deletion azure-devops/azext_devops/test/artifacts/test_univeral.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class TestUniversalPackages(unittest.TestCase):
_TEST_PACKAGE_VERSION = '0.0.1-preview'
_TEST_PACKAGE_DESCRIPTION = 'test description'
_TEST_PATH = '.'
_TEST_FILEFILTER = '*'
_TEST_FILTER = '*'

def setUp(self):

Expand Down

0 comments on commit e500d9a

Please sign in to comment.