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