From 1a73eff0771487df4fe3fb8622c03245531a67d2 Mon Sep 17 00:00:00 2001 From: Denis Laxalde Date: Tue, 2 Nov 2021 11:16:53 +0100 Subject: [PATCH] Let mypy ignore uvloop imports, missing types --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.47.3