MCPcopy Create free account
hub / github.com/Julow/Unexpected-Keyboard / parse_row

Function parse_row

check_layout.py:65–72  ·  view source on GitHub ↗
(fname)

Source from the content-addressed store, hash-verified

63 return root, keys, dup
64
65def parse_row(fname):
66 keys = set()
67 dup = set()
68 root = ET.parse(fname).getroot()
69 if root.tag != "row":
70 return None
71 parse_row_from_et(root, keys, dup)
72 return root, keys, dup
73
74def check_layout(layout):
75 root, keys, dup = layout

Callers 1

check_layoutFunction · 0.85

Calls 2

parse_row_from_etFunction · 0.85
parseMethod · 0.45

Tested by

no test coverage detected