File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 13
13
from zeep .cache import SqliteCache
14
14
from zeep .client import AsyncClient as BaseZeepAsyncClient , Settings
15
15
from zeep .exceptions import Fault
16
- from zeep .wsdl import Document
17
16
import zeep .helpers
18
17
from zeep .proxy import AsyncServiceProxy
19
18
from zeep .transports import AsyncTransport
@@ -178,9 +177,8 @@ def __init__(
178
177
settings = Settings ()
179
178
settings .strict = False
180
179
settings .xml_huge_tree = True
181
- wsdl = Document (url , self .transport , settings )
182
180
self .zeep_client_authless = ZeepAsyncClient (
183
- wsdl = wsdl ,
181
+ wsdl = url ,
184
182
transport = self .transport ,
185
183
settings = settings ,
186
184
plugins = [WsAddressingPlugin ()],
@@ -190,7 +188,7 @@ def __init__(
190
188
)
191
189
192
190
self .zeep_client = ZeepAsyncClient (
193
- wsdl = wsdl ,
191
+ wsdl = url ,
194
192
wsse = wsse ,
195
193
transport = self .transport ,
196
194
settings = settings ,
You can’t perform that action at this time.
0 commit comments