From b26becdaea89a36e7eac40c7834cc40f440d206e Mon Sep 17 00:00:00 2001 From: ReneNulschDE Date: Thu, 7 Mar 2024 15:41:14 +0100 Subject: [PATCH] CleanUp --- custom_components/mysmartbike/__init__.py | 4 ++-- custom_components/mysmartbike/config_flow.py | 4 ++-- custom_components/mysmartbike/diagnostics.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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