peacock-data-public-datasets-idc-cronscript
/
venv
/lib
/python3.10
/site-packages
/dataproperty
/_interface.py
| """ | |
| .. codeauthor:: Tsuyoshi Hombashi <[email protected]> | |
| """ | |
| import abc | |
| from typing import Optional | |
| from typepy import Typecode | |
| from ._align import Align | |
| class DataPeropertyInterface(metaclass=abc.ABCMeta): | |
| __slots__ = () | |
| def align(self) -> Align: # pragma: no cover | |
| pass | |
| def decimal_places(self) -> Optional[int]: # pragma: no cover | |
| pass | |
| def typecode(self) -> Typecode: # pragma: no cover | |
| pass | |
| def typename(self) -> str: # pragma: no cover | |
| pass | |