Add constructor return type in integrations L-N (#50888)

* Add constructor return type in integrations L-N

* Small fix
This commit is contained in:
Maciej Bieniek 2021-05-20 14:06:44 +02:00 committed by GitHub
parent f3db819548
commit e06a2a53c4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 44 additions and 44 deletions

View file

@ -227,7 +227,7 @@ class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
class OptionsFlowHandler(config_entries.OptionsFlow):
"""Handle a option flow for nut."""
def __init__(self, config_entry: config_entries.ConfigEntry):
def __init__(self, config_entry: config_entries.ConfigEntry) -> None:
"""Initialize options flow."""
self.config_entry = config_entry