From 4702d8ddb0c7c0487d958a3a3f96230706d8e350 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 26 Nov 2024 08:48:42 +0100 Subject: [PATCH] Enable strict typing for Stookwijzer (#131590) --- .strict-typing | 1 + mypy.ini | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/.strict-typing b/.strict-typing index 1196f199c78..cb0cab984ee 100644 --- a/.strict-typing +++ b/.strict-typing @@ -438,6 +438,7 @@ homeassistant.components.starlink.* homeassistant.components.statistics.* homeassistant.components.steamist.* homeassistant.components.stookalert.* +homeassistant.components.stookwijzer.* homeassistant.components.stream.* homeassistant.components.streamlabswater.* homeassistant.components.stt.* diff --git a/mypy.ini b/mypy.ini index 04c07d82afa..a71f980dac9 100644 --- a/mypy.ini +++ b/mypy.ini @@ -4137,6 +4137,16 @@ disallow_untyped_defs = true warn_return_any = true warn_unreachable = true +[mypy-homeassistant.components.stookwijzer.*] +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.stream.*] check_untyped_defs = true disallow_incomplete_defs = true