From f1f5b114c0d1f6a36eb7dcc6a69953b086ec528c Mon Sep 17 00:00:00 2001 From: Florent Date: Fri, 8 Aug 2025 14:41:27 +0200 Subject: [PATCH] don't even want to tell what was wrong, see for yourself --- pyproject.toml | 2 +- src/meshcore_cli/meshcore_cli.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 74a3118..ddcf488 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "meshcore-cli" -version = "1.1.14" +version = "1.1.15" authors = [ { name="Florent de Lamotte", email="florent@frizoncorrea.fr" }, ] diff --git a/src/meshcore_cli/meshcore_cli.py b/src/meshcore_cli/meshcore_cli.py index 9c98500..0a7b77f 100644 --- a/src/meshcore_cli/meshcore_cli.py +++ b/src/meshcore_cli/meshcore_cli.py @@ -23,7 +23,7 @@ from prompt_toolkit.shortcuts import radiolist_dialog from meshcore import MeshCore, EventType, logger # Version -VERSION = "v1.1.13" +VERSION = "v1.1.15" # default ble address is stored in a config file MCCLI_CONFIG_DIR = str(Path.home()) + "/.config/meshcore/" @@ -2219,7 +2219,7 @@ async def main(argv): client = None if device or address and len(address.split(":")) == 6 : pass - elif address and len(address) == 36 and len(address.split("-") == 5): + elif address and len(address) == 36 and len(address.split("-")) == 5: client = BleakClient(address) # mac uses uuid, we'll pass a client else: logger.info(f"Scanning BLE for device matching {address}")