From a769e05e4833a65551ed9fab66df4203e6d34121 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Tue, 22 Nov 2022 14:19:52 -0700 Subject: [PATCH] Remove unused --- frigate/comms/mqtt.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/frigate/comms/mqtt.py b/frigate/comms/mqtt.py index 5b28c365d..aa1317fa8 100644 --- a/frigate/comms/mqtt.py +++ b/frigate/comms/mqtt.py @@ -189,6 +189,3 @@ class MqttClient(Communicator): except Exception as e: logger.error(f"Unable to connect to MQTT server: {e}") return - - def add_topic_callback(self, topic: str, callback) -> None: - self.client.message_callback_add(topic, callback)