Skip to content

Commit ca8a2fb

Browse files
committed
Remove unused minor version and BSBLAN client initialization in config flow
left over from previous revisions
1 parent 345bf99 commit ca8a2fb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

homeassistant/components/bsblan/config_flow.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ class BSBLANFlowHandler(ConfigFlow, domain=DOMAIN):
2222
"""Handle a BSBLAN config flow."""
2323

2424
VERSION = 1
25-
MINOR_VERSION = 2
2625

2726
def __init__(self) -> None:
2827
"""Initialize BSBLan flow."""
@@ -33,7 +32,6 @@ def __init__(self) -> None:
3332
self.username: str | None = None
3433
self.password: str | None = None
3534
self._auth_required = True
36-
self._bsblan_client: BSBLAN | None = None
3735

3836
async def async_step_user(
3937
self, user_input: dict[str, Any] | None = None
@@ -343,7 +341,6 @@ async def _get_bsblan_info(
343341
)
344342
session = async_get_clientsession(self.hass)
345343
bsblan = BSBLAN(config, session)
346-
self._bsblan_client = bsblan
347344
device = await bsblan.device()
348345
retrieved_mac = device.MAC
349346

0 commit comments

Comments
 (0)