Use sentence case in Random entities default name (#102788)

This commit is contained in:
Joost Lekkerkerker 2023-10-25 16:09:09 +02:00 committed by GitHub
parent cd8e3a81db
commit e734a4bc53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
DEFAULT_NAME = "Random Binary Sensor"
DEFAULT_NAME = "Random binary sensor"
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
{

View File

@ -26,7 +26,7 @@ from .const import DEFAULT_MAX, DEFAULT_MIN
ATTR_MAXIMUM = "maximum"
ATTR_MINIMUM = "minimum"
DEFAULT_NAME = "Random Sensor"
DEFAULT_NAME = "Random sensor"
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(