# -*- coding: utf-8 -*- import serial # type: ignore from . import BaseInterface class SerialInterface(serial.Serial, BaseInterface): pass