1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Change manufacturer_data_first_byte to manufacturer_data_start (#75379)

This commit is contained in:
J. Nick Koston
2022-07-17 17:25:45 -05:00
committed by GitHub
parent a95c2c7850
commit 91f2550bc3
8 changed files with 25 additions and 19 deletions

View File

@@ -14,7 +14,7 @@ from __future__ import annotations
# fmt: off
BLUETOOTH: list[dict[str, str | int]] = {}
BLUETOOTH: list[dict[str, str | int | list[int]]] = {}
""".strip()

View File

@@ -196,7 +196,7 @@ MANIFEST_SCHEMA = vol.Schema(
vol.Optional("service_uuid"): vol.All(str, verify_lowercase),
vol.Optional("local_name"): vol.All(str),
vol.Optional("manufacturer_id"): int,
vol.Optional("manufacturer_data_first_byte"): int,
vol.Optional("manufacturer_data_start"): [int],
}
)
],