srne-mqtt/srnemqtt/interfaces/__init__.py

8 lines
152 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
from abc import ABCMeta
from io import RawIOBase
2023-04-07 21:26:55 +00:00
class BaseInterface(RawIOBase, metaclass=ABCMeta):
2023-12-09 15:35:45 +00:00
timeout: float | None