From 764c1fa210f5f9ae95aa7288e5dc347667ecbff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Chaves?= Date: Wed, 28 Aug 2024 21:53:33 +0200 Subject: [PATCH] Silence mypy complaint --- zyte_spider_templates/params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zyte_spider_templates/params.py b/zyte_spider_templates/params.py index 6dee8a9..ca1158b 100644 --- a/zyte_spider_templates/params.py +++ b/zyte_spider_templates/params.py @@ -10,7 +10,7 @@ from pydantic.config import JsonDict except ImportError: JsonValue = Union[int, float, str, bool, None, List["JsonValue"], "JsonDict"] - JsonDict = Dict[str, JsonValue] + JsonDict = Dict[str, JsonValue] # type: ignore[misc] from zyte_spider_templates._geolocations import ( GEOLOCATION_OPTIONS_WITH_CODE,