1 """Schemata for ruuvi_gateway."""
3 from __future__
import annotations
5 import voluptuous
as vol
9 CONFIG_SCHEMA = vol.Schema(
11 vol.Required(CONF_HOST): str,
12 vol.Required(CONF_TOKEN): str,
18 """Return a config schema with a default host."""
19 return CONFIG_SCHEMA.extend({vol.Required(CONF_HOST, default=host): str})
vol.Schema get_config_schema_with_default_host(str host)