srne-mqtt/srnemqtt/interfaces/serial.py

9 lines
147 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2023-12-08 12:45:05 +00:00
import serial # type: ignore
2023-04-07 21:57:37 +00:00
from . import BaseInterface
2023-04-07 21:57:37 +00:00
class SerialInterface(serial.Serial, BaseInterface):
pass