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