linux.py: add missing serial import

Signed-off-by: Sven Peter <sven@svenpeter.dev>
This commit is contained in:
Sven Peter 2021-07-01 20:21:36 +02:00 committed by Hector Martin
parent 6afe9ebaf9
commit 620f1972ce

View file

@ -1,6 +1,7 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: MIT
import sys, pathlib
import serial
sys.path.append(str(pathlib.Path(__file__).resolve().parents[1]))
import argparse, pathlib