Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion homeassistant/components/point/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/config_entries.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
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):
Expand Down