From 15f8deb2e0b63c1f533b0889252b3e760bf1e40c Mon Sep 17 00:00:00 2001 From: askiiart Date: Sun, 23 Oct 2022 13:02:46 -0500 Subject: [PATCH] Remove unnecessary import --- Demos/Python/pyserialtransfer_demo.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Demos/Python/pyserialtransfer_demo.py b/Demos/Python/pyserialtransfer_demo.py index 7fa07f2..f2d70a3 100644 --- a/Demos/Python/pyserialtransfer_demo.py +++ b/Demos/Python/pyserialtransfer_demo.py @@ -1,4 +1,3 @@ -import os import time from pySerialTransfer import pySerialTransfer as txfer @@ -10,7 +9,7 @@ try: # On Linux, it will be "/dev/ttyXXX#", like "/dev/ttyACM0" or "/dev/ttyUSB0". I think macOS is the same. # On Windows, it will be "COM#", like "COM3" # --- - port = '/dev/ttyACM0' + port = '/dev/ttyACM2' link = txfer.SerialTransfer(port, 115200, timeout=.1) link.open()