Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Sep 16, 2023
1 parent 9f8acab commit 146f98d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 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()]
pkg["outputs"] = [dict(id=key, **val) for key, val in package["outputs"].items()]
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
assert cwl == pkg

def test_execute_inputs_capture(self):
Expand Down
1 change: 0 additions & 1 deletion weaver/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
request_extra,
setup_loggers
)
from weaver.visibility import Visibility
from weaver.wps_restapi import swagger_definitions as sd

if TYPE_CHECKING:
Expand Down

0 comments on commit 146f98d

Please sign in to comment.