Allow dict as input to zwave_js.set_value service (#59370)

* Original service data as a dict

Fixes per recommendation in #57336.

* Update homeassistant/components/zwave_js/const.py

agree, thanks

Co-authored-by: epenet <6771947+epenet@users.noreply.github.com>

Co-authored-by: epenet <6771947+epenet@users.noreply.github.com>
This commit is contained in:
kreene1987 2021-11-10 00:08:43 -06:00 committed by GitHub
parent 5e2d71dc90
commit 1ea092a54f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -133,4 +133,5 @@ VALUE_SCHEMA = vol.Any(
vol.Coerce(float),
BITMASK_SCHEMA,
cv.string,
dict,
)