From 9ad0eafe37464cab817a7889191f7aec364a985e Mon Sep 17 00:00:00 2001 From: David Lechner Date: Mon, 29 Dec 2025 12:45:19 -0600 Subject: [PATCH] GATT: remove duplicate GATT_CONTENT_CONTROL_ID_CHARACTERISTIC Remove the first occurrence of GATT_CONTENT_CONTROL_ID_CHARACTERISTIC. The "Telephone Bearer Service (TBS)" section also defines GATT_CONTENT_CONTROL_ID_CHARACTERISTIC later, so we don't need this one. --- bumble/gatt.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bumble/gatt.py b/bumble/gatt.py index 795241aa..19e9e087 100644 --- a/bumble/gatt.py +++ b/bumble/gatt.py @@ -227,7 +227,6 @@ GATT_MEDIA_CONTROL_POINT_CHARACTERISTIC = UUID.from_16_bits(0x GATT_MEDIA_CONTROL_POINT_OPCODES_SUPPORTED_CHARACTERISTIC = UUID.from_16_bits(0x2BA5, 'Media Control Point Opcodes Supported') GATT_SEARCH_RESULTS_OBJECT_ID_CHARACTERISTIC = UUID.from_16_bits(0x2BA6, 'Search Results Object ID') GATT_SEARCH_CONTROL_POINT_CHARACTERISTIC = UUID.from_16_bits(0x2BA7, 'Search Control Point') -GATT_CONTENT_CONTROL_ID_CHARACTERISTIC = UUID.from_16_bits(0x2BBA, 'Content Control Id') # Telephone Bearer Service (TBS) GATT_BEARER_PROVIDER_NAME_CHARACTERISTIC = UUID.from_16_bits(0x2BB3, 'Bearer Provider Name')