lowercase uuids

This commit is contained in:
Jesse Hills 2022-09-28 15:58:00 +13:00
parent a3904aabfd
commit 40793909bf
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -759,7 +759,7 @@ def _long_uuid(uuid: str) -> str:
"""Convert a UUID to a long UUID."""
return (
f"0000{uuid[2:].lower()}-0000-1000-8000-00805f9b34fb" if len(uuid) < 8 else uuid
)
).lower()
def _convert_bluetooth_le_service_uuids(value: List[str]) -> List[str]: