コード例 #1
0
ファイル: config.py プロジェクト: franciscod/corrscope
 def to_yaml(cls, representer: Representer, node: Enum) -> Any:
     return representer.represent_str(node._name_)  # type: ignore
コード例 #2
0
def represent_paths(self, data: PurePath):
    return Representer.represent_str(self, data.as_posix())