From: Denis Laxalde Date: Tue, 2 Nov 2021 10:16:53 +0000 (+0100) Subject: Let mypy ignore uvloop imports, missing types X-Git-Tag: 3.0.3~3^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a73eff0771487df4fe3fb8622c03245531a67d2;p=thirdparty%2Fpsycopg.git Let mypy ignore uvloop imports, missing types --- diff --git a/pyproject.toml b/pyproject.toml index e9c6b31ed..c23888a2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,6 +50,10 @@ ignore_missing_imports = true module = "tenacity.*" implicit_reexport = true +[[tool.mypy.overrides]] +module = "uvloop" +ignore_missing_imports = true + [[tool.mypy.overrides]] module = "tests.*" check_untyped_defs = true