peacock-data-public-datasets-idc-llm_eval
/
env-llmeval
/lib
/python3.10
/site-packages
/dataproperty
/_align_getter.py
""" | |
.. codeauthor:: Tsuyoshi Hombashi <[email protected]> | |
""" | |
from typing import Dict | |
from typepy import Typecode | |
from ._align import Align | |
class AlignGetter: | |
def typecode_align_table(self): | |
raise NotImplementedError() | |
def typecode_align_table(self, x: Dict[Typecode, Align]) -> None: | |
self.__typecode_align_table = x | |
def get_align_from_typecode(self, typecode: Typecode) -> Align: | |
return self.__typecode_align_table.get(typecode, self.default_align) | |
def __init__(self) -> None: | |
self.typecode_align_table = { | |
Typecode.STRING: Align.LEFT, | |
Typecode.INTEGER: Align.RIGHT, | |
Typecode.REAL_NUMBER: Align.RIGHT, | |
} | |
self.default_align = Align.LEFT | |
align_getter = AlignGetter() | |