Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit abbb96a

Browse files
committed
Fixup linting errors in http20/response.py.
1 parent 6c9e68b commit abbb96a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

hyper/http20/response.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,8 @@ class HTTP20Push(object):
195195
def __init__(self, request_headers, stream):
196196
#: The scheme of the simulated request
197197
self.scheme = request_headers[b':scheme'][0]
198-
#: The method of the simulated request (must be safe and cacheable, e.g. GET)
198+
#: The method of the simulated request (must be safe and cacheable,
199+
#: e.g. GET)
199200
self.method = request_headers[b':method'][0]
200201
#: The authority of the simulated request (usually host:port)
201202
self.authority = request_headers[b':authority'][0]
@@ -224,4 +225,4 @@ def cancel(self):
224225
225226
:returns: Nothing.
226227
"""
227-
self._stream.close(8) # CANCEL
228+
self._stream.close(8) # CANCEL

0 commit comments

Comments
 (0)