Skip to content
This repository has been archived by the owner on Jul 1, 2023. It is now read-only.

Commit

Permalink
Actually fix config flow (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgarwood authored Nov 5, 2020
1 parent b15a6b7 commit 5049bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/fullykiosk/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def authenticate(self, username, password) -> bool:

async def validate_input(hass: core.HomeAssistant, data):
"""Validate the user input allows us to connect."""
session = async_get_clientsession()
session = async_get_clientsession(hass)
fully = FullyKiosk(session, data["host"], data["port"], data["password"])

try:
Expand Down

0 comments on commit 5049bea

Please sign in to comment.