We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 278feb9 commit 9ea41b9Copy full SHA for 9ea41b9
custom_components/remote_homeassistant/const.py
@@ -25,4 +25,7 @@
25
26
DOMAIN = "remote_homeassistant"
27
28
-REMOTE_ID = "remote"
+REMOTE_ID = "remote"
29
+
30
+# replaces 'from homeassistant.core import SERVICE_CALL_LIMIT'
31
+SERVICE_CALL_LIMIT = 10
custom_components/remote_homeassistant/proxy_services.py
@@ -2,11 +2,10 @@
2
import asyncio
3
4
import voluptuous as vol
5
-from homeassistant.core import SERVICE_CALL_LIMIT
6
from homeassistant.exceptions import HomeAssistantError
7
from homeassistant.helpers.service import SERVICE_DESCRIPTION_CACHE
8
9
-from .const import CONF_SERVICE_PREFIX, CONF_SERVICES
+from .const import CONF_SERVICE_PREFIX, CONF_SERVICES, SERVICE_CALL_LIMIT
10
11
12
class ProxyServices:
0 commit comments