Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump pyMicrobot to 0.0.10 #109628

Merged
merged 11 commits into from Feb 5, 2024
Merged
6 changes: 5 additions & 1 deletion homeassistant/components/keymitt_ble/config_flow.py
Expand Up @@ -139,7 +139,11 @@ async def async_step_link(
return self.async_show_form(step_id="link")

if not await self._client.is_connected():
errors["base"] = "linking"
await self._client.connect(init=False)
if not await self._client.is_connected():
errors["base"] = "linking"
else:
await self._client.disconnect()
else:
await self._client.disconnect()

Expand Down
3 changes: 2 additions & 1 deletion homeassistant/components/keymitt_ble/manifest.json
Expand Up @@ -13,7 +13,8 @@
"config_flow": true,
"dependencies": ["bluetooth_adapters"],
"documentation": "https://www.home-assistant.io/integrations/keymitt_ble",
"integration_type": "device",
"iot_class": "assumed_state",
"loggers": ["keymitt_ble"],
"requirements": ["PyMicroBot==0.0.9"]
"requirements": ["PyMicroBot==0.0.10"]
}
2 changes: 1 addition & 1 deletion requirements_all.txt
Expand Up @@ -76,7 +76,7 @@ PyMetEireann==2021.8.0
PyMetno==0.11.0

# homeassistant.components.keymitt_ble
PyMicroBot==0.0.9
PyMicroBot==0.0.10

# homeassistant.components.nina
PyNINA==0.3.3
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_all.txt
Expand Up @@ -64,7 +64,7 @@ PyMetEireann==2021.8.0
PyMetno==0.11.0

# homeassistant.components.keymitt_ble
PyMicroBot==0.0.9
PyMicroBot==0.0.10

# homeassistant.components.nina
PyNINA==0.3.3
Expand Down