Skip to content

Commit 58496b9

Browse files
committed
Merge branch 'release_24.0' into release_24.1
2 parents 45f315d + 3f3fd82 commit 58496b9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/galaxy/tool_util/linters/inputs.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -710,12 +710,14 @@ def lint(cls, tool_source: "ToolSource", lint_ctx: "LintContext"):
710710
# TODO check if input param is present for from_dataset
711711
from_dataset = options.get("from_dataset", None)
712712
from_data_table = options.get("from_data_table", None)
713+
from_url = options.get("from_url", None)
713714

714715
if (
715716
from_file is None
716717
and from_parameter is None
717718
and from_dataset is None
718719
and from_data_table is None
720+
and from_url is None
719721
and not filter_adds_options
720722
):
721723
lint_ctx.error(

0 commit comments

Comments
 (0)