From 3d5a831df254dc6d1a4fc915f92fa9b8f48579c9 Mon Sep 17 00:00:00 2001 From: Ruslan Sayfutdinov Date: Wed, 28 Apr 2021 10:35:04 +0100 Subject: [PATCH] Fix typos in type checking section (#904) --- docs/development_guidelines.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development_guidelines.md b/docs/development_guidelines.md index 9cd06e83..35cb9539 100644 --- a/docs/development_guidelines.md +++ b/docs/development_guidelines.md @@ -73,6 +73,6 @@ _LOGGER.info("Can't connect to the webservice %s at %s", string1, string2) We encourage the use of fully typing your code. This helps with finding/preventing issues and bugs in our codebase, but also helps fellow contributors making adjustments to your code in the future as well. -By default, Home Assistant will statically check for type hints and our automated CI process. -Python modules can be include for strict checking, if they are fully typed, by adding an entry +By default, Home Assistant will statically check for type hints in our automated CI process. +Python modules can be included for strict checking, if they are fully typed, by adding an entry to the `.strict-typing` file in the root of the Home Assistant Core project.