We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19305ed commit 548cdf3Copy full SHA for 548cdf3
src/pyff/builtins.py
@@ -686,7 +686,7 @@ def load(req: Plumbing.Request, *opts):
686
if elt == "as":
687
child_opts.alias = value
688
elif elt == "verify":
689
- child_opts.verify = value
+ child_opts.verify = [value]
690
elif elt == "via":
691
child_opts.via.append(PipelineCallback(value, req, store=req.md.store))
692
elif elt == "cleanup":
@@ -698,7 +698,7 @@ def load(req: Plumbing.Request, *opts):
698
"Usage: load resource [as url] [[verify] verification] [via pipeline]* [cleanup pipeline]*"
699
)
700
else:
701
- child_opts.verify = elt
+ child_opts.verify = [elt]
702
703
# override anything in child_opts with what is in opts
704
child_opts = child_opts.model_copy(update=_opts)
0 commit comments