From 3837a4d1e044335db2b2889b763c6cf35410f9a9 Mon Sep 17 00:00:00 2001 From: Zach Pincus Date: Mon, 4 Apr 2016 12:00:06 -0500 Subject: [PATCH] fixes to python API --- py/iotool/io_tool.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/py/iotool/io_tool.py b/py/iotool/io_tool.py index 574a7c5..65ac851 100644 --- a/py/iotool/io_tool.py +++ b/py/iotool/io_tool.py @@ -25,7 +25,6 @@ import os import time -from . import commands from . import smart_serial _ECHO_OFF = b'\x80\xFF' @@ -42,7 +41,6 @@ def __init__(self, serial_port_name): except (smart_serial.SerialTimeout, RuntimeError): # explicitly clobber traceback from SerialTimeout exception raise smart_serial.SerialException('Could not communicate with IOTool device -- is it attached?') - self.commands = commands.Commands() def reset(self): """Attempt to reset the IOTool device to a known-good state."""