Skip to content

Commit afe01c4

Browse files
bluetechpgjones
authored andcommitted
Apply some black formatting
1 parent 00bc6b2 commit afe01c4

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

test/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +0,0 @@
1-

wsproto/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class WSConnection:
1919
"""
2020
Represents the local end of a WebSocket connection to a remote peer.
2121
"""
22+
2223
def __init__(self, connection_type: ConnectionType) -> None:
2324
"""
2425
Constructor

wsproto/connection.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class ConnectionState(Enum):
2828
"""
2929
RFC 6455, Section 4 - Opening Handshake
3030
"""
31+
3132
#: The opening handshake is in progress.
3233
CONNECTING = 0
3334
#: The opening handshake is complete.
@@ -44,6 +45,7 @@ class ConnectionState(Enum):
4445

4546
class ConnectionType(Enum):
4647
""" An enumeration of connection types. """
48+
4749
#: This connection will act as client and talk to a remote server
4850
CLIENT = 1
4951

0 commit comments

Comments
 (0)