From d248dbb72bb1b9df9ecb956d11e9c91bd015b5a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=2E=20K=C3=A4rkk=C3=A4inen?= Date: Wed, 4 Sep 2019 17:51:59 +0300 Subject: [PATCH] Linter --- sanic/headers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sanic/headers.py b/sanic/headers.py index e1ac48b3..ec3dc237 100644 --- a/sanic/headers.py +++ b/sanic/headers.py @@ -3,6 +3,7 @@ import re from typing import Any, Dict, Iterable, Optional, Tuple from urllib.parse import unquote + HeaderIterable = Iterable[Tuple[str, Any]] # Values convertible to str Options = Dict[str, str] # key=value fields in various headers OptionsIterable = Iterable[Tuple[str, str]] # May contain duplicate keys