Add blank lines for lint

This commit is contained in:
Ammonite
2017-01-21 09:39:34 +01:00
parent 8aa250d679
commit 93172460aa

View File

@@ -27,6 +27,7 @@ import re
# https://bugzilla.mozilla.org/show_bug.cgi?id=45891
parse_host_header = re.compile(r"^(?P<host>[^:]+|\[.+\])(?::(?P<port>\d+))?$")
class Rerouter:
def __init__(self):
self.hostHeader = None
@@ -54,5 +55,6 @@ class Rerouter:
flow.request.host = sni or host_header
flow.request.port = port
def start():
return Rerouter()