We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 712a36f commit 4ae7403Copy full SHA for 4ae7403
wes_client/util.py
@@ -277,11 +277,11 @@ def run(
277
:return: The body of the post result as a dictionary.
278
"""
279
attachments = list(expand_globs(attachments))
280
- parts, attachments = build_wes_request(wf, jsonyaml, attachments)
+ parts, files = build_wes_request(wf, jsonyaml, attachments)
281
postresult = requests.post( # nosec B113
282
f"{self.proto}://{self.host}/ga4gh/wes/v1/runs",
283
data=parts,
284
- files=attachments,
+ files=files,
285
# headers=self.auth,
286
)
287
return wes_response(postresult)
0 commit comments