From 6d1121a7519493c4aac8c1792f7f869e97196d44 Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Sun, 12 Dec 2021 00:31:18 -0800 Subject: [PATCH] so unit test will pass --- meshtastic/__main__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index 3022509..9561ca1 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -13,7 +13,6 @@ import pyqrcode import pkg_resources import meshtastic.util import meshtastic.test -from .serial_interface import SerialInterface from .tcp_interface import TCPInterface from .ble_interface import BLEInterface from . import remote_hardware @@ -599,7 +598,7 @@ def common(): client = TCPInterface( args.host, debugOut=logfile, noProto=args.noproto) else: - client = SerialInterface( + client = meshtastic.serial_interface.SerialInterface( args.port, debugOut=logfile, noProto=args.noproto) # We assume client is fully connected now