Skip to content

Commit

Permalink
Fixing some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
valleedelisle committed Dec 24, 2021
1 parent 5428cf2 commit 4006700
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions custom_components/hilo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Support for SimpliSafe alarm systems."""
"""Support for Hilo automation systems."""
from __future__ import annotations

import asyncio
Expand Down Expand Up @@ -245,7 +245,7 @@ async def request_status_update(self) -> None:
await inv_cb(inv_id)

async def async_init(self) -> None:
"""Initialize the SimpliSafe "manager" class."""
"""Initialize the Hilo "manager" class."""
if TYPE_CHECKING:
assert self._api.refresh_token
assert self._api.websocket
Expand Down Expand Up @@ -339,7 +339,7 @@ async def cancel_websocket_loop(self) -> None:
await self._api.websocket.async_disconnect()

async def async_update(self) -> None:
"""Get updated data from SimpliSafe."""
"""Get updated data from Hilo API."""
await self.devices.update()
if self.generate_energy_meters:
self.check_tarif()
Expand Down Expand Up @@ -446,7 +446,7 @@ def set_tarif(self, entity, current, new):


class HiloEntity(CoordinatorEntity):
"""Define a base SimpliSafe entity."""
"""Define a base Hilo base entity."""

def __init__(
self,
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hilo/sensor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Support for SimpliSafe freeze sensor."""
"""Support for various Hilo sensors."""
from __future__ import annotations

from datetime import timedelta
Expand Down

0 comments on commit 4006700

Please sign in to comment.