Fix typos in type checking section (#904)

This commit is contained in:
Ruslan Sayfutdinov 2021-04-28 10:35:04 +01:00 committed by GitHub
parent b5de04684c
commit 3d5a831df2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.