From 0e5d72a501dabb9b3c4209a98efab9ead488c932 Mon Sep 17 00:00:00 2001 From: Joost Lekkerkerker Date: Tue, 12 Dec 2023 20:54:35 +0100 Subject: [PATCH] Add Android IP webcam to strict typing (#105570) --- .strict-typing | 1 + mypy.ini | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/.strict-typing b/.strict-typing index f8361ba82dd..e2a630f0179 100644 --- a/.strict-typing +++ b/.strict-typing @@ -60,6 +60,7 @@ homeassistant.components.ambient_station.* homeassistant.components.amcrest.* homeassistant.components.ampio.* homeassistant.components.analytics.* +homeassistant.components.android_ip_webcam.* homeassistant.components.anova.* homeassistant.components.anthemav.* homeassistant.components.apcupsd.* diff --git a/mypy.ini b/mypy.ini index ae0d18562ee..94ff0c1e46d 100644 --- a/mypy.ini +++ b/mypy.ini @@ -360,6 +360,16 @@ disallow_untyped_defs = true warn_return_any = true warn_unreachable = true +[mypy-homeassistant.components.android_ip_webcam.*] +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.anova.*] check_untyped_defs = true disallow_incomplete_defs = true