hass-core/homeassistant/components/zone/config_flow.py
Ville Skyttä dc880118a4
Lint suppression cleanups (#47248)
* Unused pylint suppression cleanups

* Remove outdated pylint bug references

* Add flake8-noqa config and note to run it every now and then

* Add codes to noqa's

* Unused noqa cleanups
2021-03-02 09:02:04 +01:00

13 lines
417 B
Python

"""Config flow to configure zone component.
This is no longer in use. This file is around so that existing
config entries will remain to be loaded and then automatically
migrated to the storage collection.
"""
from homeassistant import config_entries
from .const import DOMAIN # pylint: disable=unused-import
class ZoneConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
"""Stub zone config flow class."""