From d6d9f9f44c064b0309fc4f92a09f4099b54ea4e3 Mon Sep 17 00:00:00 2001 From: Dan Plischke Date: Mon, 26 Aug 2024 14:08:15 +0200 Subject: [PATCH] fix pylint error, only visible in ci pipeline --- ariadne/asgi/handlers/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ariadne/asgi/handlers/http.py b/ariadne/asgi/handlers/http.py index 24ad711e..184282b7 100644 --- a/ariadne/asgi/handlers/http.py +++ b/ariadne/asgi/handlers/http.py @@ -181,7 +181,7 @@ def __init__( self.encoding = encoding or "utf-8" self.content = None - _headers: dict[str, str] = {} + _headers: Dict[str, str] = {} if headers is not None: _headers.update(headers) # mandatory for servers-sent events headers