From 260f168077b7d83a63eb64c75e77ffd54d0b9714 Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 3 Jun 2022 23:39:11 +0300 Subject: [PATCH] mypy ignore_missing_imports --- pyproject.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c515900..0200e88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,3 +41,12 @@ manage-ics2gcal = "sync_ics2gcal.manage_calendars:main" [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" + +[[tool.mypy.overrides]] +module = [ + 'icalendar', + 'google.*', + 'googleapiclient' +] +ignore_missing_imports = true +