From 00c58089f5b0d58a291b1992dca468914d442165 Mon Sep 17 00:00:00 2001 From: Patrik Lindgren <21142447+ggravlingen@users.noreply.github.com> Date: Tue, 15 Mar 2022 17:57:03 +0000 Subject: [PATCH] Add gateway to mypy.ini --- mypy.ini | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/mypy.ini b/mypy.ini index 185b167e..21b7648c 100644 --- a/mypy.ini +++ b/mypy.ini @@ -289,3 +289,14 @@ disallow_untyped_defs = true no_implicit_optional = true warn_return_any = true warn_unreachable = true + +[mypy-pytradfri.gateway] +check_untyped_defs = true +disallow_incomplete_defs = true +disallow_subclassing_any = true +disallow_untyped_calls = true +disallow_untyped_decorators = true +disallow_untyped_defs = true +no_implicit_optional = true +warn_return_any = true +warn_unreachable = true