diff --git a/custom_components/daily/__init__.py b/custom_components/daily/__init__.py index 8fde647..4388ad3 100644 --- a/custom_components/daily/__init__.py +++ b/custom_components/daily/__init__.py @@ -1,4 +1,4 @@ -"""The Smart Irrigation integration.""" +"""The Daily Sensor integration.""" import asyncio from datetime import timedelta import logging diff --git a/custom_components/daily/config_flow.py b/custom_components/daily/config_flow.py index 471656c..6b3f254 100644 --- a/custom_components/daily/config_flow.py +++ b/custom_components/daily/config_flow.py @@ -1,4 +1,4 @@ -"""Config flow for Smart Irrigation integration.""" +"""Config flow for Daily Sensor integration.""" from .const import ( # pylint: disable=unused-import DOMAIN, CONF_INPUT_SENSOR, diff --git a/custom_components/daily/entity.py b/custom_components/daily/entity.py index 4570d50..bed7f3b 100644 --- a/custom_components/daily/entity.py +++ b/custom_components/daily/entity.py @@ -1,4 +1,4 @@ -"""SmartIrrigationEntity class.""" +"""Daily Sensor class.""" from homeassistant.helpers.restore_state import RestoreEntity import logging diff --git a/custom_components/daily/sensor.py b/custom_components/daily/sensor.py index e311c42..f60850c 100644 --- a/custom_components/daily/sensor.py +++ b/custom_components/daily/sensor.py @@ -1,4 +1,4 @@ -"""Sensor platform for Smart Irrigation.""" +"""Sensor platform for Daily Sensor.""" import asyncio import logging from statistics import median, stdev, variance, StatisticsError diff --git a/custom_components/daily/strings.json b/custom_components/daily/strings.json index b0be58d..7d97e45 100644 --- a/custom_components/daily/strings.json +++ b/custom_components/daily/strings.json @@ -22,7 +22,6 @@ "unknown": "[%key:common::config_flow::error::unknown%]" }, "abort": { - "single_instance_allowed": "Only a single configuration of Smart Irrigation is allowed." } } } diff --git a/custom_components/daily/translations/en.json b/custom_components/daily/translations/en.json index b0be58d..7d97e45 100644 --- a/custom_components/daily/translations/en.json +++ b/custom_components/daily/translations/en.json @@ -22,7 +22,6 @@ "unknown": "[%key:common::config_flow::error::unknown%]" }, "abort": { - "single_instance_allowed": "Only a single configuration of Smart Irrigation is allowed." } } }