Fix typo in config entries doc (#20619)

This fixes a typo in the docstring of config_entries which was
propagated in the point component.
This commit is contained in:
Thomas Hervé 2019-01-31 10:52:42 +01:00 committed by Martin Hjelmare
parent 7151c4bcd7
commit 511e35e8fd
2 changed files with 2 additions and 2 deletions

View file

@ -43,7 +43,7 @@ class PointFlowHandler(config_entries.ConfigFlow):
"""Handle a config flow."""
VERSION = 1
CONNETION_CLASS = config_entries.CONN_CLASS_CLOUD_POLL
CONNECTION_CLASS = config_entries.CONN_CLASS_CLOUD_POLL
def __init__(self):
"""Initialize flow."""

View file

@ -30,7 +30,7 @@ At a minimum, each config flow will have to define a version number and the
class ExampleConfigFlow(config_entries.ConfigFlow):
VERSION = 1
CONNETION_CLASS = config_entries.CONN_CLASS_LOCAL_PUSH
CONNECTION_CLASS = config_entries.CONN_CLASS_LOCAL_PUSH
async def async_step_user(self, user_input=None):