Fix small typo in mobile_app docstring (#126863)

This commit is contained in:
Joost Lekkerkerker
2024-09-27 00:01:11 +02:00
committed by GitHub
parent 7c6cc16ef1
commit bcfdfe93f9
3 changed files with 4 additions and 4 deletions

View File

@@ -69,7 +69,7 @@ async def async_setup_entry(
class MobileAppBinarySensor(MobileAppEntity, BinarySensorEntity):
"""Representation of an mobile app binary sensor."""
"""Representation of a mobile app binary sensor."""
async def async_restore_last_state(self, last_state: State) -> None:
"""Restore previous state."""

View File

@@ -1,4 +1,4 @@
"""A entity class for mobile_app."""
"""An entity class for mobile_app."""
from __future__ import annotations
@@ -24,7 +24,7 @@ from .helpers import device_info
class MobileAppEntity(RestoreEntity):
"""Representation of an mobile app entity."""
"""Representation of a mobile app entity."""
_attr_should_poll = False

View File

@@ -78,7 +78,7 @@ async def async_setup_entry(
class MobileAppSensor(MobileAppEntity, RestoreSensor):
"""Representation of an mobile app sensor."""
"""Representation of a mobile app sensor."""
async def async_restore_last_state(self, last_state: State) -> None:
"""Restore previous state."""