Skip to content

Commit 8e4d84a

Browse files
authored
Changed "Days to" to "Days until" (#109)
2 parents 370c74c + 47f4cef commit 8e4d84a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/isitpayday/sensor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class IsItPaydayDaysToSensor(CoordinatorEntity, SensorEntity):
7777
def __init__(self, coordinator: DataUpdateCoordinator, entry_id: str, instance_name: str):
7878
super().__init__(coordinator)
7979
self._attr_unique_id = f"{entry_id}_days_to"
80-
self._attr_name = f"{instance_name}: Days to"
80+
self._attr_name = f"{instance_name}: Days until"
8181
self._attr_icon = ICON_DAYS_TO
8282
self._instance_name = instance_name
8383
self._entry_id = entry_id

0 commit comments

Comments
 (0)