Bump pysmartthings (#24659)
parent
d4cab60343
commit
a868685ac9
|
@ -5,7 +5,7 @@
|
||||||
"documentation": "https://www.home-assistant.io/components/smartthings",
|
"documentation": "https://www.home-assistant.io/components/smartthings",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"pysmartapp==0.3.2",
|
"pysmartapp==0.3.2",
|
||||||
"pysmartthings==0.6.8"
|
"pysmartthings==0.6.9"
|
||||||
],
|
],
|
||||||
"dependencies": [
|
"dependencies": [
|
||||||
"webhook"
|
"webhook"
|
||||||
|
|
|
@ -282,9 +282,9 @@ async def smartapp_sync_subscriptions(
|
||||||
await api.create_subscription(sub)
|
await api.create_subscription(sub)
|
||||||
_LOGGER.debug("Created subscription for '%s' under app '%s'",
|
_LOGGER.debug("Created subscription for '%s' under app '%s'",
|
||||||
target, installed_app_id)
|
target, installed_app_id)
|
||||||
except Exception: # pylint:disable=broad-except
|
except Exception as error: # pylint:disable=broad-except
|
||||||
_LOGGER.exception("Failed to create subscription for '%s' under "
|
_LOGGER.error("Failed to create subscription for '%s' under app "
|
||||||
"app '%s'", target, installed_app_id)
|
"'%s': %s", target, installed_app_id, error)
|
||||||
|
|
||||||
async def delete_subscription(sub: SubscriptionEntity):
|
async def delete_subscription(sub: SubscriptionEntity):
|
||||||
try:
|
try:
|
||||||
|
@ -293,9 +293,9 @@ async def smartapp_sync_subscriptions(
|
||||||
_LOGGER.debug("Removed subscription for '%s' under app '%s' "
|
_LOGGER.debug("Removed subscription for '%s' under app '%s' "
|
||||||
"because it was no longer needed",
|
"because it was no longer needed",
|
||||||
sub.capability, installed_app_id)
|
sub.capability, installed_app_id)
|
||||||
except Exception: # pylint:disable=broad-except
|
except Exception as error: # pylint:disable=broad-except
|
||||||
_LOGGER.exception("Failed to remove subscription for '%s' under "
|
_LOGGER.error("Failed to remove subscription for '%s' under app "
|
||||||
"app '%s'", sub.capability, installed_app_id)
|
"'%s': %s", sub.capability, installed_app_id, error)
|
||||||
|
|
||||||
# Build set of capabilities and prune unsupported ones
|
# Build set of capabilities and prune unsupported ones
|
||||||
capabilities = set()
|
capabilities = set()
|
||||||
|
|
|
@ -1351,7 +1351,7 @@ pysma==0.3.1
|
||||||
pysmartapp==0.3.2
|
pysmartapp==0.3.2
|
||||||
|
|
||||||
# homeassistant.components.smartthings
|
# homeassistant.components.smartthings
|
||||||
pysmartthings==0.6.8
|
pysmartthings==0.6.9
|
||||||
|
|
||||||
# homeassistant.components.smarty
|
# homeassistant.components.smarty
|
||||||
pysmarty==0.8
|
pysmarty==0.8
|
||||||
|
|
|
@ -290,7 +290,7 @@ pyqwikswitch==0.93
|
||||||
pysmartapp==0.3.2
|
pysmartapp==0.3.2
|
||||||
|
|
||||||
# homeassistant.components.smartthings
|
# homeassistant.components.smartthings
|
||||||
pysmartthings==0.6.8
|
pysmartthings==0.6.9
|
||||||
|
|
||||||
# homeassistant.components.sonos
|
# homeassistant.components.sonos
|
||||||
pysonos==0.0.16
|
pysonos==0.0.16
|
||||||
|
|
Loading…
Reference in New Issue