Skip to content

Commit

Permalink
ignore lint false-positive in test
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Sep 18, 2023
1 parent 146f98d commit d1f961a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1353,8 +1353,8 @@ def test_package_process(self):
cwl.pop("$id", None)
cwl.pop("$schema", None)
pkg = package.copy()
pkg["inputs"] = [dict(id=key, **val) for key, val in package["inputs"].items()] # noqa
pkg["outputs"] = [dict(id=key, **val) for key, val in package["outputs"].items()] # noqa
pkg["inputs"] = [{"id": key, **val} for key, val in package["inputs"].items()] # pylint: disable=E1136
pkg["outputs"] = [{"id": key, **val} for key, val in package["outputs"].items()] # pylint: disable=E1136
assert cwl == pkg

def test_execute_inputs_capture(self):
Expand Down

0 comments on commit d1f961a

Please sign in to comment.