Skip to content

Commit 7d5eadd

Browse files
committed
[Schematic][Fixed] Footprint instance parsing
1 parent 7d40b73 commit 7d5eadd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kibot/kicad/v6_sch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1186,7 +1186,7 @@ def parse(items):
11861186
instance.value = _check_symbol_str(v, c+4, name, 'value')
11871187
elif i_type == 'footprint':
11881188
# KiCad 6 only
1189-
instance.footprint = _check_symbol_str(v, c+5, name, 'footprint')
1189+
instance.footprint = _check_symbol_str(v, c+4, name, 'footprint')
11901190
elif i_type == 'variant':
11911191
# KiCad 10 (not documented 2026/03/06)
11921192
variant = Variant.parse(i)

0 commit comments

Comments
 (0)