From 14b05b0a91bbdbee61e9b5f8cdddd0db7537c052 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 9 Mar 2019 19:52:50 -0800 Subject: [PATCH] Fix incorrect 2nd param --- homeassistant/components/cloud/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/cloud/__init__.py b/homeassistant/components/cloud/__init__.py index 954cc8385f6..1d46eb91b86 100644 --- a/homeassistant/components/cloud/__init__.py +++ b/homeassistant/components/cloud/__init__.py @@ -110,7 +110,7 @@ async def async_create_cloudhook(hass, webhook_id: str) -> str: if not async_is_logged_in(hass): raise CloudNotAvailable - hook = await hass.data[DOMAIN].cloudhooks.async_create(webhook_id, True) + hook = await hass.data[DOMAIN].cloudhooks.async_create(webhook_id) return hook['cloudhook_url']