コード例 #1
0
ファイル: pycff.py プロジェクト: citation-file-format/pycff
 def _yatiml_savorize(cls, node: yatiml.Node) -> None:
     node.dashes_to_unders_in_keys()
     node.rename_attribute('type', 'typ')
コード例 #2
0
ファイル: pycff.py プロジェクト: citation-file-format/pycff
 def _yatiml_savorize(cls, node: yatiml.Node) -> None:
     node.dashes_to_unders_in_keys()
コード例 #3
0
ファイル: test_helpers.py プロジェクト: yatiml/yatiml
def test_dashes_to_unders_in_keys(class_node: yatiml.Node) -> None:
    assert class_node.has_attribute('dashed-attr')
    assert class_node.has_attribute('list1')
    class_node.dashes_to_unders_in_keys()
    assert class_node.has_attribute('dashed_attr')
    assert class_node.has_attribute('list1')