Skip to content

Commit 23e094d

Browse files
yapith-suplarimvantellingen
authored andcommitted
added raw_response support for AsyncSoapBinding
1 parent db50375 commit 23e094d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/zeep/asyncio/bindings.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ async def send(self, client, options, operation, args, kwargs):
1414
response = await client.transport.post_xml(
1515
options['address'], envelope, http_headers)
1616

17-
operation_obj = self.get(operation)
18-
1917
if client.settings.raw_response:
2018
return response
21-
19+
20+
operation_obj = self.get(operation)
2221
return self.process_reply(client, operation_obj, response)
2322

2423

0 commit comments

Comments
 (0)