Skip to content

Commit 95ada09

Browse files
committed
remove unused ignore annotations
1 parent 2e10dca commit 95ada09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cwltool/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ def load_job_order(args, t, stdin, print_input_deps=False, relative_deps=False,
434434
if len(args.job_order) == 1 and args.job_order[0][0] != "-":
435435
job_order_file = args.job_order[0]
436436
elif len(args.job_order) == 1 and args.job_order[0] == "-":
437-
job_order_object = yaml.round_trip_load(stdin) # type: ignore
437+
job_order_object = yaml.round_trip_load(stdin)
438438
job_order_object, _ = loader.resolve_all(job_order_object, file_uri(os.getcwd()) + "/")
439439
else:
440440
job_order_file = None

cwltool/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ def __init__(self, toolpath_object, pos, **kwargs):
684684
for tool_entry in self.embedded_tool.tool[toolfield]:
685685
frag = shortname(tool_entry["id"])
686686
if frag == shortinputid:
687-
param.update(tool_entry) # type: ignore
687+
param.update(tool_entry)
688688
found = True
689689
bound.add(frag)
690690
break

0 commit comments

Comments
 (0)