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:
parent
7151c4bcd7
commit
511e35e8fd
2 changed files with 2 additions and 2 deletions
|
@ -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."""
|
||||
|
|
|
@ -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):
|
||||
…
|
||||
|
|
Loading…
Add table
Reference in a new issue