Skip to content

Commit

Permalink
correct typos
Browse files Browse the repository at this point in the history
  • Loading branch information
elad-bar committed May 2, 2024
1 parent ef1c149 commit d34b53d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions custom_components/edgeos/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
This component provides support for Shinobi Video.
This component provides support for EdgeOS based devices.
For more details about this component, please refer to the documentation at
https://github.com/elad-bar/ha-shinobi
https://github.com/elad-bar/ha-EdgeOS
"""
import logging
import sys
Expand All @@ -25,7 +25,7 @@ async def async_setup(_hass, _config):


async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
"""Set up a Shinobi Video component."""
"""Set up a EdgeOS component."""
initialized = False

try:
Expand Down
1 change: 0 additions & 1 deletion custom_components/edgeos/device_tracker.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""
Support for Ubiquiti EdgeOS routers.
HEAVILY based on the AsusWRT component
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/device_tracker.edgeos/
"""
Expand Down
2 changes: 1 addition & 1 deletion custom_components/edgeos/diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def _async_get_diagnostics(
def _async_device_as_dict(
hass: HomeAssistant, identifiers, additional_data: dict
) -> dict[str, Any]:
"""Represent a Shinobi monitor as a dictionary."""
"""Represent an EdgeOS based device as a dictionary."""
device_registry = dr.async_get(hass)
entity_registry = er.async_get(hass)

Expand Down
2 changes: 1 addition & 1 deletion custom_components/edgeos/managers/rest_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ async def _do_nothing(self, _status: ConnectivityStatus):
pass

async def initialize(self):
_LOGGER.info("Initializing Shinobi Server API")
_LOGGER.info("Initializing EdgeOS API")

self._set_status(ConnectivityStatus.Connecting)

Expand Down

0 comments on commit d34b53d

Please sign in to comment.