ZWave Lock Tests#6730
Conversation
|
@armills, thanks for your PR! By analyzing the history of the files in this pull request, we identified @turbokongen, @balloob and @devdelay to be potential reviewers. |
| zwave.DOMAIN, zwave.SERVICE_CLEAR_USERCODE, { | ||
| const.ATTR_NODE_ID: node.node_id, | ||
| zwave.ATTR_CODE_SLOT: 1, | ||
| }) |
There was a problem hiding this comment.
continuation line missing indentation or outdented
| zwave.DOMAIN, zwave.SERVICE_GET_USERCODE, { | ||
| const.ATTR_NODE_ID: node.node_id, | ||
| zwave.ATTR_CODE_SLOT: 1, | ||
| }) |
There was a problem hiding this comment.
continuation line missing indentation or outdented
| const.ATTR_NODE_ID: node.node_id, | ||
| zwave.ATTR_USERCODE: '12345', | ||
| zwave.ATTR_CODE_SLOT: 1, | ||
| }) |
There was a problem hiding this comment.
continuation line missing indentation or outdented
| const.ATTR_NODE_ID: node.node_id, | ||
| zwave.ATTR_USERCODE: '1234', | ||
| zwave.ATTR_CODE_SLOT: 1, | ||
| }) |
There was a problem hiding this comment.
continuation line missing indentation or outdented
| SERVICE_CLEAR_USERCODE, | ||
| clear_usercode, | ||
| descriptions.get(SERVICE_CLEAR_USERCODE), | ||
| schema=CLEAR_USERCODE_SCHEMA) |
There was a problem hiding this comment.
continuation line under-indented for visual indent
| descriptions.get(SERVICE_SET_USERCODE), | ||
| schema=SET_USERCODE_SCHEMA) | ||
| hass.services.async_register(DOMAIN, | ||
| SERVICE_GET_USERCODE, |
There was a problem hiding this comment.
continuation line under-indented for visual indent
| SERVICE_SET_USERCODE, | ||
| set_usercode, | ||
| descriptions.get(SERVICE_SET_USERCODE), | ||
| schema=SET_USERCODE_SCHEMA) |
There was a problem hiding this comment.
continuation line under-indented for visual indent
| hass.services.async_register(DOMAIN, | ||
| SERVICE_SET_USERCODE, | ||
| set_usercode, | ||
| descriptions.get(SERVICE_SET_USERCODE), |
There was a problem hiding this comment.
continuation line under-indented for visual indent
| schema=CLEAR_USERCODE_SCHEMA) | ||
| hass.services.async_register(DOMAIN, | ||
| SERVICE_SET_USERCODE, | ||
| set_usercode, |
There was a problem hiding this comment.
continuation line under-indented for visual indent
| descriptions.get(SERVICE_CLEAR_USERCODE), | ||
| schema=CLEAR_USERCODE_SCHEMA) | ||
| hass.services.async_register(DOMAIN, | ||
| SERVICE_SET_USERCODE, |
There was a problem hiding this comment.
continuation line under-indented for visual indent
|
Looks good! 🐬 |
* cleanup * Update __init__.py * Update __init__.py * Update __init__.py
Description:
This PR also includes some small fixes I found during testing. This should be the last of the individual ZWave platforms.
#6437