diff --git a/custom_components/mysmartbike/__init__.py b/custom_components/mysmartbike/__init__.py index 8ff67bd..7afd630 100644 --- a/custom_components/mysmartbike/__init__.py +++ b/custom_components/mysmartbike/__init__.py @@ -1,4 +1,4 @@ -"""The Link2Home integration.""" +"""The MySmartBike integration.""" from __future__ import annotations from homeassistant.config_entries import ConfigEntry @@ -10,7 +10,7 @@ async def async_setup_entry(hass: HomeAssistant, config_entry: ConfigEntry): - """Set up Link2Home from a config entry.""" + """Set up MySmartBike from a config entry.""" websession = async_get_clientsession(hass, VERIFY_SSL) diff --git a/custom_components/mysmartbike/config_flow.py b/custom_components/mysmartbike/config_flow.py index 7cd1142..0d139a7 100644 --- a/custom_components/mysmartbike/config_flow.py +++ b/custom_components/mysmartbike/config_flow.py @@ -1,4 +1,4 @@ -"""Config flow for NEW_NAME integration.""" +"""Config flow for MySmartBike integration.""" from __future__ import annotations from http import HTTPStatus @@ -34,7 +34,7 @@ class Link2HomeConfigFlow(ConfigFlow, domain=DOMAIN): - """Handle a config or options flow for Link2Home.""" + """Handle a config or options flow for MySmartBike.""" VERSION = 1 diff --git a/custom_components/mysmartbike/diagnostics.py b/custom_components/mysmartbike/diagnostics.py index 71a1580..ffcf3f8 100644 --- a/custom_components/mysmartbike/diagnostics.py +++ b/custom_components/mysmartbike/diagnostics.py @@ -1,4 +1,4 @@ -"""Diagnostics support for AccuWeather.""" +"""Diagnostics support for MySmartBike.""" from __future__ import annotations from typing import Any