From 58f8a8079a6fa1d25fe536e5d9e3fcfcbf41389c Mon Sep 17 00:00:00 2001 From: Christopher Hoch <60989727+dumpfheimer@users.noreply.github.com> Date: Tue, 19 Sep 2023 16:04:46 +0200 Subject: [PATCH] Update util.py (#582) fixed cli issue --- bellows/cli/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bellows/cli/util.py b/bellows/cli/util.py index eac1d7a8..f917bc03 100644 --- a/bellows/cli/util.py +++ b/bellows/cli/util.py @@ -110,7 +110,7 @@ async def setup(dev, baudrate, cbh=None, configure=True): s.add_callback(cbh) try: await s.connect() - await s._startup_reset() + await s.startup_reset() except Exception as e: LOGGER.error(e) s.close()