From 533d481c6334dd8734f462dc1d0c9e8310709fb7 Mon Sep 17 00:00:00 2001 From: Andrey Kislyuk Date: Sun, 10 Dec 2023 22:40:15 -0800 Subject: [PATCH] Do not try to type check tomlkit --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c89a30c..8d52904 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,3 +13,7 @@ per-file-ignores = {"yq/__init__.py" = ["F401"]} [[tool.mypy.overrides]] module = "argcomplete.*" ignore_missing_imports = true + +[[tool.mypy.overrides]] +module = "tomlkit.*" +ignore_missing_imports = true