Tobotimus c80684a129 [V3] NumPy Docstrings (#1032)
* ALL THE DOCSTRINGS

* Remove imports in drivers package

* Fixed build warnings
2017-10-17 22:01:59 -04:00

14 lines
307 B
Python

from typing import Tuple
__all__ = ["BaseDriver"]
class BaseDriver:
def get_driver(self):
raise NotImplementedError
async def get(self, identifiers: Tuple[str]):
raise NotImplementedError
async def set(self, identifiers: Tuple[str], value):
raise NotImplementedError