From eb349fe5b5908d24f4e7b1661d118ad138333724 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=2E=20K=C3=A4rkk=C3=A4inen?= Date: Sun, 15 Dec 2019 14:07:07 +0200 Subject: [PATCH] Add an empty line to make isort happy. --- sanic/headers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sanic/headers.py b/sanic/headers.py index 6bfccddd..9f50c797 100644 --- a/sanic/headers.py +++ b/sanic/headers.py @@ -5,6 +5,7 @@ from urllib.parse import unquote from sanic.helpers import STATUS_CODES + HeaderIterable = Iterable[Tuple[str, Any]] # Values convertible to str Options = Dict[str, Union[int, str]] # key=value fields in various headers OptionsIterable = Iterable[Tuple[str, str]] # May contain duplicate keys