Fix small typo in mobile_app docstring (#126863)
This commit is contained in:
parent
7c6cc16ef1
commit
bcfdfe93f9
3 changed files with 4 additions and 4 deletions
|
@ -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."""
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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."""
|
||||
|
|
Loading…
Add table
Reference in a new issue