Skip to content

Commit 0c724be

Browse files
committed
fix: debug message in pin_lock
1 parent 4128a75 commit 0c724be

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
@@ -53,8 +53,9 @@ def allocate_pins(name: str, member: Dict[str, Any], pins: List[str], port_name:
5353

5454
if member['type'] == 'interface' and 'annotations' in member \
5555
and PIN_ANNOTATION_SCHEMA in member['annotations']:
56-
logger.debug("matched PinSignature {sig}")
5756
sig = member['annotations'][PIN_ANNOTATION_SCHEMA]
57+
logger.debug(f"matched PinSignature {sig}")
58+
name = name
5859
width = sig['width']
5960
options = sig['options']
6061
pin_map[name] = {'pins': pins[0:width],

0 commit comments

Comments
 (0)