From 39bfc3871c760280b6694299239cee88975e50ed Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Thu, 29 Sep 2022 11:43:33 +1300 Subject: [PATCH] Remove description field --- aioesphomeapi/model.py | 1 - 1 file changed, 1 deletion(-) diff --git a/aioesphomeapi/model.py b/aioesphomeapi/model.py index 381f95d..d355d09 100644 --- a/aioesphomeapi/model.py +++ b/aioesphomeapi/model.py @@ -826,7 +826,6 @@ class BluetoothGATTRead(APIModelBase): class BluetoothGATTDescriptor(APIModelBase): uuid: str = converter_field(default="", converter=_join_split_uuid) handle: int = 0 - description: str = "" @classmethod def convert_list(cls, value: List[Any]) -> List["BluetoothGATTDescriptor"]: