Skip to content

Commit

Permalink
Fixed py/call/wrong-named-class-argument alert in LGTM.
Browse files Browse the repository at this point in the history
  • Loading branch information
ngnpope committed Mar 30, 2021
1 parent 61ca4e3 commit 65469c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def create(cls, action, id):
name='PutOpsPort',
targetNamespace='http://flightdataservices.com/ops.wsdl',
location='http://127.0.0.1:8088/mockPutOpsBinding',
schema=Schema,
schemas=[Schema],
version=soap.SOAPVersion.SOAP11,
methods=[PutOps_method])

Expand Down
6 changes: 3 additions & 3 deletions examples/stock/gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_stock_price(request, gsp):
version=soap.SOAPVersion.SOAP11,
# The url were request should be send.
location='http://127.0.0.1:8000/stock/soap11',
schema=Schema,
schemas=[Schema],
methods=[get_stock_price_method])


Expand All @@ -54,7 +54,7 @@ def get_stock_price(request, gsp):
version=soap.SOAPVersion.SOAP12,
# The url where request should be sent.
location='http://127.0.0.1:8000/stock/soap12',
schema=Schema,
schemas=[Schema],
methods=[get_stock_price_method])


Expand Down Expand Up @@ -172,5 +172,5 @@ def PutOps(request, ops): # noqa
SERVICE = soap.Service(
targetNamespace='http://flightdataservices.com/ops.wsdl',
location='http://polaris.flightdataservices.com/ws/ops',
schema=Schema,
schemas=[Schema],
methods=[PutOps_method])

0 comments on commit 65469c8

Please sign in to comment.