Skip to content

Commit

Permalink
Linting fixes...
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jul 18, 2024
1 parent ac6691a commit 514a08d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion lib/galaxy/tool_util/parser/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ def parse_profile_version(tool_source: "ToolSource") -> float:
return float(tool_source.parse_profile())


def parse_tool_version_with_defaults(id: Optional[str], tool_source: "ToolSource", profile: Optional[Version] = None) -> str:
def parse_tool_version_with_defaults(
id: Optional[str], tool_source: "ToolSource", profile: Optional[Version] = None
) -> str:
if profile is None:
profile = Version(tool_source.parse_profile())

Expand Down
1 change: 0 additions & 1 deletion lib/galaxy/tool_util/verify/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ def _process_raw_inputs(
)
if case_input_sources:
for input_source in case_input_sources.parse_input_sources():
input_name = input_source.get("name")
case_inputs = _process_raw_inputs(
tool_source,
[input_source],
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@
)
from galaxy.tool_util.toolbox.views.sources import StaticToolBoxViewSources
from galaxy.tool_util.verify.interactor import ToolTestDescription
from galaxy.tool_util.verify.parse import parse_tool_test_descriptions
from galaxy.tool_util.verify.test_data import TestDataNotFoundError
from galaxy.tool_util.version import (
LegacyVersion,
Expand Down Expand Up @@ -149,7 +150,6 @@
from galaxy.tools.parameters.meta import expand_meta_parameters
from galaxy.tools.parameters.workflow_utils import workflow_building_modes
from galaxy.tools.parameters.wrapped_json import json_wrap
from galaxy.tool_util.verify.parse import parse_tool_test_descriptions
from galaxy.util import (
in_directory,
listify,
Expand Down

0 comments on commit 514a08d

Please sign in to comment.