From 03645411f02c45c0f06667f546c4fb078a21b5f6 Mon Sep 17 00:00:00 2001 From: David O'Neill Date: Mon, 6 May 2024 21:45:42 -0700 Subject: [PATCH] Fix exception on 511 command caused by last commit --- custom_components/envisalink_new/pyenvisalink/dsc_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/envisalink_new/pyenvisalink/dsc_client.py b/custom_components/envisalink_new/pyenvisalink/dsc_client.py index 703beb9..891d95c 100644 --- a/custom_components/envisalink_new/pyenvisalink/dsc_client.py +++ b/custom_components/envisalink_new/pyenvisalink/dsc_client.py @@ -407,7 +407,7 @@ def handle_keypad_led_state_update(self, code, data): return {STATE_CHANGE_KEYPAD: updatedPartitions} def handle_keypad_led_flash_state_update(self, code, data): - _LOGGER.debug(f"Keypad LED FLASH state update: {flags}") + _LOGGER.debug("Keypad LED FLASH state update") self.handle_keypad_led_state_update(code, data)