Skip to content

Commit 8b89923

Browse files
committed
Ran black on file
1 parent ddb0b21 commit 8b89923

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

adafruit_minimqtt/adafruit_minimqtt.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,9 @@ def remove_topic_callback(self, mqtt_topic):
246246
try:
247247
del self._on_message_filtered[mqtt_topic]
248248
except KeyError:
249-
raise KeyError("MQTT topic callback not added with add_topic_callback.") from None
249+
raise KeyError(
250+
"MQTT topic callback not added with add_topic_callback."
251+
) from None
250252

251253
@property
252254
def on_message(self):

0 commit comments

Comments
 (0)