From 23d45856e40ba7c33833536dfe2375e70d1e9a35 Mon Sep 17 00:00:00 2001 From: Laurent LAPORTE Date: Mon, 4 Sep 2023 18:53:18 +0200 Subject: [PATCH] ci: change the configuration of mypy to ignore `httpx` package --- setup.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.cfg b/setup.cfg index 2c39ba30ac..b0f3012d17 100644 --- a/setup.cfg +++ b/setup.cfg @@ -11,6 +11,9 @@ ignore_missing_imports = True [mypy-pytest.*] ignore_missing_imports = True +[mypy-httpx.*] +ignore_missing_imports = True + [mypy-jsonref.*] ignore_missing_imports = True