From 54f944bea7a7fa874b962271897df65298a9bb86 Mon Sep 17 00:00:00 2001 From: Sean Kinsey Date: Tue, 26 Nov 2024 21:26:27 -0800 Subject: [PATCH] Added missing dependencies --- setup.cfg | 4 +++- src/avionmqtt/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2db9406..19373f2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = avionmqtt -version = 1.2.1 +version = 1.2.2 author = Sean Kinsey author_email = oyvind@kinsey.no description = A python library to bridge between Avi-on based lights and Home Assistant using MQTT @@ -23,6 +23,8 @@ install_requires = aiorun ~=2024.8.1 bleak ~=0.22 csrmesh ~=0.10 + pyyaml ~=6.0.2 + aiomqtt ~=2.3.0 [options.packages.find] where = src \ No newline at end of file diff --git a/src/avionmqtt/__init__.py b/src/avionmqtt/__init__.py index 9bf48bb..19f3b0c 100644 --- a/src/avionmqtt/__init__.py +++ b/src/avionmqtt/__init__.py @@ -354,7 +354,7 @@ async def main(): running = False except BleakError as e: - print(f"mesh: Error connecting to {mac}") + print("mesh: Error connecting to device") except Exception as e: print("mesh: Exception")