Skip to content

Commit

Permalink
Fix ROVA validation (#114938)
Browse files Browse the repository at this point in the history
* Fix ROVA validation

* Fix ROVA validation
  • Loading branch information
joostlek authored and frenck committed Apr 5, 2024
1 parent 47d9879 commit 9560613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/rova/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
vol.Optional(CONF_HOUSE_NUMBER_SUFFIX, default=""): cv.string,
vol.Optional(CONF_NAME, default="Rova"): cv.string,
vol.Optional(CONF_MONITORED_CONDITIONS, default=["bio"]): vol.All(
cv.ensure_list, [vol.In(SENSOR_TYPES)]
cv.ensure_list, [vol.In(["bio", "paper", "plastic", "residual"])]
),
}
)
Expand Down

0 comments on commit 9560613

Please sign in to comment.