This commit is contained in:
Johann Kellerman 2016-11-08 01:07:24 +02:00 committed by Fabian Affolter
parent b4159c7dc9
commit 231ef40f53
3 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
Native Home Assistant iOS app component. Native Home Assistant iOS app component.
For more details about this platform, please refer to the documentation at For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/ios/ https://home-assistant.io/ecosystem/ios/
""" """
import asyncio import asyncio
import os import os

View File

@ -2,7 +2,7 @@
iOS push notification platform for notify component. iOS push notification platform for notify component.
For more details about this platform, please refer to the documentation at For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/notify.ios/ https://home-assistant.io/ecosystem/ios/notifications/
""" """
import logging import logging
from datetime import datetime, timezone from datetime import datetime, timezone
@ -48,8 +48,8 @@ def get_service(hass, config):
if not ios.devices_with_push(): if not ios.devices_with_push():
_LOGGER.error(("The notify.ios platform was loaded but no " _LOGGER.error(("The notify.ios platform was loaded but no "
"devices exist! Please check the documentation at " "devices exist! Please check the documentation at "
"https://home-assistant.io/components/notify.ios/ " "https://home-assistant.io/ecosystem/ios/notifications"
"for more information")) "/ for more information"))
return None return None
return iOSNotificationService() return iOSNotificationService()

View File

@ -2,7 +2,7 @@
Support for Home Assistant iOS app sensors. Support for Home Assistant iOS app sensors.
For more details about this platform, please refer to the documentation at For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/sensor.ios/ https://home-assistant.io/ecosystem/ios/
""" """
from homeassistant.components import ios from homeassistant.components import ios
from homeassistant.helpers.entity import Entity from homeassistant.helpers.entity import Entity