Skip to content

Commit

Permalink
Ignore point
Browse files Browse the repository at this point in the history
  • Loading branch information
epenet committed Sep 14, 2024
1 parent b672b61 commit b60b9b4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions homeassistant/components/point/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@


@callback
# pylint: disable-next=hass-argument-type # see PR 118243
def register_flow_implementation(hass, domain, client_id, client_secret):
"""Register a flow implementation.
Expand All @@ -51,6 +52,7 @@ def __init__(self) -> None:
"""Initialize flow."""
self.flow_impl = None

# pylint: disable-next=hass-return-type # see PR 118243
async def async_step_import(self, user_input=None):
"""Handle external yaml configuration."""
if self._async_current_entries():
Expand Down Expand Up @@ -86,6 +88,7 @@ async def async_step_user(
data_schema=vol.Schema({vol.Required("flow_impl"): vol.In(list(flows))}),
)

# pylint: disable-next=hass-return-type # see PR 118243
async def async_step_auth(self, user_input=None):
"""Create an entry for auth."""
if self._async_current_entries():
Expand Down Expand Up @@ -125,6 +128,7 @@ async def _get_authorization_url(self):

return point_session.get_authorization_url

# pylint: disable-next=hass-return-type # see PR 118243
async def async_step_code(self, code=None):
"""Received code for authentication."""
if self._async_current_entries():
Expand Down

0 comments on commit b60b9b4

Please sign in to comment.