Add missing headers field (#1946)

This commit is contained in:
Salvo 'LtWorf' Tomaselli
2018-03-07 06:36:33 +01:00
committed by Jelle Zijlstra
parent 1fe9fd83fa
commit 89e5d9607c

View File

@@ -47,6 +47,7 @@ class Request:
origin_req_host = ... # type: str
selector = ... # type: str
data = ... # type: Optional[bytes]
headers = ... # type: Dict[str, str]
unverifiable = ... # type: bool
method = ... # type: Optional[str]
def __init__(self, url: str, data: Optional[bytes] = ...,