From 84bffcd2e141d76055d27ce633739a3dc4ef38aa Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Tue, 12 Dec 2023 20:54:00 +0100 Subject: [PATCH] Add Aranet to strict typing (#105577) --- .strict-typing | 1 + mypy.ini | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/.strict-typing b/.strict-typing index ce1491b33eb..f8361ba82dd 100644 --- a/.strict-typing +++ b/.strict-typing @@ -65,6 +65,7 @@ homeassistant.components.anthemav.* homeassistant.components.apcupsd.* homeassistant.components.apprise.* homeassistant.components.aqualogic.* +homeassistant.components.aranet.* homeassistant.components.aseko_pool_live.* homeassistant.components.assist_pipeline.* homeassistant.components.asuswrt.* diff --git a/mypy.ini b/mypy.ini index df774c3a167..ae0d18562ee 100644 --- a/mypy.ini +++ b/mypy.ini @@ -410,6 +410,16 @@ disallow_untyped_defs = true warn_return_any = true warn_unreachable = true +[mypy-homeassistant.components.aranet.*] +check_untyped_defs = true +disallow_incomplete_defs = true +disallow_subclassing_any = true +disallow_untyped_calls = true +disallow_untyped_decorators = true +disallow_untyped_defs = true +warn_return_any = true +warn_unreachable = true + [mypy-homeassistant.components.aseko_pool_live.*] check_untyped_defs = true disallow_incomplete_defs = true