Skip to content

Commit 02fff02

Browse files
committed
fix: debug message in pin_lock
1 parent 49594f9 commit 02fff02

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chipflow_lib/pin_lock.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ def allocate_pins(name: str, member: Dict[str, Any], pins: List[str], port_name:
4343

4444
if member['type'] == 'interface' and 'annotations' in member \
4545
and PIN_ANNOTATION_SCHEMA in member['annotations']:
46-
logger.debug("matched PinSignature {sig}")
4746
sig = member['annotations'][PIN_ANNOTATION_SCHEMA]
47+
logger.debug(f"matched PinSignature {sig}")
48+
name = name
4849
width = sig['width']
4950
options = sig['options']
5051
pin_map[name] = {'pins': pins[0:width],

0 commit comments

Comments
 (0)