We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da3c79 commit 43d9f48Copy full SHA for 43d9f48
ESP-NOW_basics/espnow_transceiver.py
@@ -123,8 +123,8 @@ def get_sender_color(rx_message):
123
sent_label.text = "TX'd: " # Keep this tomato colored
124
sent_counter_label.text = str(message_count) # Color with sender color
125
sent_counter_label.color = SENDER_COLORS.get(DEVICE_ID, WHITE)
126
- #pylint: disable=broad-exception-caught
127
- except Exception as ex:
+
+ except Exception as ex: # pylint: disable=broad-except
128
print(f"Send failed: {ex}")
129
status_label.text = "xxx"
130
status_label.color = RED
0 commit comments