Skip to content

Commit 6a8095a

Browse files
committed
linting
1 parent 0b9d0d8 commit 6a8095a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/wsproto/handshake.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,9 @@ def _accept(self, event: AcceptConnection) -> bytes:
286286
headers.append((b"Sec-WebSocket-Extensions", accepts))
287287

288288
response = h11.InformationalResponse(
289-
status_code=101, headers=headers + event.extra_headers, reason=b"Switching Protocols"
289+
status_code=101,
290+
headers=headers + event.extra_headers,
291+
reason=b"Switching Protocols",
290292
)
291293
self._connection = Connection(
292294
ConnectionType.CLIENT if self.client else ConnectionType.SERVER,

0 commit comments

Comments
 (0)