Add typing to style guidelines (#433)

This commit is contained in:
springstan 2020-03-14 17:34:15 +01:00 committed by GitHub
parent d4d1604cab
commit 27433dd8a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,3 +67,7 @@ One exception is for logging which uses the percentage formatting. This is to av
```python
_LOGGER.info("Can't connect to the webservice %s at %s", string1, string2)
```
### Typing of functions
Either completely type a function or do not type a function at all.