Skip to content

Commit

Permalink
User local session
Browse files Browse the repository at this point in the history
  • Loading branch information
cyr-ius committed Dec 20, 2024
1 parent 37efaf3 commit 79b3751
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion custom_components/bbox/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ async def async_step_user(
api = Bbox(
hostname=user_input[CONF_HOST],
password=user_input[CONF_PASSWORD],
session=async_create_clientsession(self.hass),
use_tls=user_input[CONF_USE_TLS],
verify_ssl=user_input[CONF_VERIFY_SSL],
)
Expand Down
1 change: 0 additions & 1 deletion custom_components/bbox/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ async def _async_setup(self) -> None:
self.bbox = Bbox(
password=self.entry.data[CONF_PASSWORD],
hostname=self.entry.data[CONF_HOST],
session=async_create_clientsession(self.hass),
use_tls=self.entry.data.get(CONF_USE_TLS, False),
verify_ssl=self.entry.data.get(CONF_VERIFY_SSL, False),
)
Expand Down

0 comments on commit 79b3751

Please sign in to comment.