Bump zwave-js-server-python to 0.37.0 (#72395)

This commit is contained in:
Raman Gupta 2022-05-25 13:46:55 -04:00 committed by GitHub
parent c8c4bf6c37
commit fe3fa0ae17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 445 additions and 24 deletions

View file

@ -534,7 +534,9 @@ async def async_get_trigger_capabilities(
vol.Required(ATTR_COMMAND_CLASS): vol.In(
{
CommandClass(cc.id).value: cc.name
for cc in sorted(node.command_classes, key=lambda cc: cc.name) # type: ignore[no-any-return]
for cc in sorted(
node.command_classes, key=lambda cc: cc.name
)
if cc.id != CommandClass.CONFIGURATION
}
),