Skip to content

Commit db66342

Browse files
iksteenmvantellingen
authored andcommitted
Reformat using newer version of black.
1 parent f90dc50 commit db66342

File tree

13 files changed

+50
-49
lines changed

13 files changed

+50
-49
lines changed

src/zeep/transports.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
try:
2020
from packaging.version import Version
21+
2122
if httpx is None or Version(httpx.__version__) < Version("0.26.0"):
2223
HTTPX_PROXY_KWARG_NAME = "proxies"
2324
else:

src/zeep/wsdl/__init__.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
"""
2-
zeep.wsdl
3-
---------
2+
zeep.wsdl
3+
---------
44
5-
The wsdl module is responsible for parsing the WSDL document. This includes
6-
the bindings and messages.
5+
The wsdl module is responsible for parsing the WSDL document. This includes
6+
the bindings and messages.
77
8-
The structure and naming of the modules and classses closely follows the
9-
WSDL 1.1 specification.
8+
The structure and naming of the modules and classses closely follows the
9+
WSDL 1.1 specification.
1010
11-
The serialization and deserialization of the SOAP/HTTP messages is done
12-
by the zeep.wsdl.messages modules.
11+
The serialization and deserialization of the SOAP/HTTP messages is done
12+
by the zeep.wsdl.messages modules.
1313
1414
1515
"""

src/zeep/wsdl/definitions.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
"""
2-
zeep.wsdl.definitions
3-
~~~~~~~~~~~~~~~~~~~~~
2+
zeep.wsdl.definitions
3+
~~~~~~~~~~~~~~~~~~~~~
44
5-
A WSDL document exists out of a number of definitions. There are 6 major
6-
definitions, these are:
5+
A WSDL document exists out of a number of definitions. There are 6 major
6+
definitions, these are:
77
8-
- types
9-
- message
10-
- portType
11-
- binding
12-
- port
13-
- service
8+
- types
9+
- message
10+
- portType
11+
- binding
12+
- port
13+
- service
1414
15-
This module defines the definitions which occur within a WSDL document,
15+
This module defines the definitions which occur within a WSDL document,
1616
1717
"""
1818

src/zeep/wsdl/messages/__init__.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
"""
2-
zeep.wsdl.messages
3-
~~~~~~~~~~~~~~~~~~
2+
zeep.wsdl.messages
3+
~~~~~~~~~~~~~~~~~~
44
5-
The messages are responsible for serializing and deserializing
5+
The messages are responsible for serializing and deserializing
66
7-
.. inheritance-diagram::
8-
zeep.wsdl.messages.soap.DocumentMessage
9-
zeep.wsdl.messages.soap.RpcMessage
10-
zeep.wsdl.messages.http.UrlEncoded
11-
zeep.wsdl.messages.http.UrlReplacement
12-
zeep.wsdl.messages.mime.MimeContent
13-
zeep.wsdl.messages.mime.MimeXML
14-
zeep.wsdl.messages.mime.MimeMultipart
15-
:parts: 1
7+
.. inheritance-diagram::
8+
zeep.wsdl.messages.soap.DocumentMessage
9+
zeep.wsdl.messages.soap.RpcMessage
10+
zeep.wsdl.messages.http.UrlEncoded
11+
zeep.wsdl.messages.http.UrlReplacement
12+
zeep.wsdl.messages.mime.MimeContent
13+
zeep.wsdl.messages.mime.MimeXML
14+
zeep.wsdl.messages.mime.MimeMultipart
15+
:parts: 1
1616
1717
"""
1818

src/zeep/wsdl/messages/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
zeep.wsdl.messages.base
3-
~~~~~~~~~~~~~~~~~~~~~~~
2+
zeep.wsdl.messages.base
3+
~~~~~~~~~~~~~~~~~~~~~~~
44
55
"""
66

src/zeep/wsdl/messages/http.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
zeep.wsdl.messages.http
3-
~~~~~~~~~~~~~~~~~~~~~~~
2+
zeep.wsdl.messages.http
3+
~~~~~~~~~~~~~~~~~~~~~~~
44
55
"""
66

src/zeep/wsdl/messages/mime.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
zeep.wsdl.messages.mime
3-
~~~~~~~~~~~~~~~~~~~~~~~
2+
zeep.wsdl.messages.mime
3+
~~~~~~~~~~~~~~~~~~~~~~~
44
55
"""
66

src/zeep/wsdl/messages/soap.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
zeep.wsdl.messages.soap
3-
~~~~~~~~~~~~~~~~~~~~~~~
2+
zeep.wsdl.messages.soap
3+
~~~~~~~~~~~~~~~~~~~~~~~
44
55
"""
66

src/zeep/wsdl/parse.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
zeep.wsdl.parse
3-
~~~~~~~~~~~~~~~
2+
zeep.wsdl.parse
3+
~~~~~~~~~~~~~~~
44
55
"""
66

src/zeep/wsdl/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
zeep.wsdl.utils
3-
~~~~~~~~~~~~~~~
2+
zeep.wsdl.utils
3+
~~~~~~~~~~~~~~~
44
55
"""
66

0 commit comments

Comments
 (0)