fix: Remove 'rc' option from update_branch configuration in schema

This commit is contained in:
2026-07-01 23:28:46 +02:00
parent 6f9d598a6d
commit bfa7d0044d
2 changed files with 1 additions and 7 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ CONFIG_SCHEMA = vol.Schema({
DOMAIN: vol.Schema({
vol.Optional(CONF_CHECK_UPDATES, default=True): cv.boolean,
vol.Optional(CONF_UPDATE_BRANCH, default='master'): vol.In(
['master', 'rc'])
['master'])
})
}, extra=vol.ALLOW_EXTRA)
-6
View File
@@ -44,12 +44,6 @@ infrarize:
check_updates: false
```
If you would like to get updates from the rc branch (Release Candidate), configure Infrarize as follows:
```yaml
infrarize:
update_branch: rc
```
**(3)** Configure a platform.
### *HACS*