From 0b7340a6fe25da4dc962891abdbfbf8592d10a1b Mon Sep 17 00:00:00 2001 From: Trecia Agoylo Date: Mon, 15 Jan 2024 13:29:22 +0800 Subject: [PATCH] remove usbmux support in manager temporarily Signed-off-by: Trecia Agoylo --- nebula/manager.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nebula/manager.py b/nebula/manager.py index 83fcff3..816bd77 100644 --- a/nebula/manager.py +++ b/nebula/manager.py @@ -112,12 +112,12 @@ def __init__( # noqa:C901 self.tftp = False - if "usbmux-config" in configs: - self.usbsdmux = usbmux( - yamlfilename=self.configfilename, board_name=board_name - ) - else: - self.usbsdmux = None + # if "usbmux-config" in configs: + # self.usbsdmux = usbmux( + # yamlfilename=self.configfilename, board_name=board_name + # ) + # else: + # self.usbsdmux = None self.help = helper() self.usbdev = usbdev()