7 lines
152 B
Python
7 lines
152 B
Python
# -*- coding: utf-8 -*-
|
|
from abc import ABCMeta
|
|
from io import RawIOBase
|
|
|
|
|
|
class BaseInterface(RawIOBase, metaclass=ABCMeta):
|
|
timeout: float | None
|