Skip to content

Commit cb4f96d

Browse files
committed
fix: debug message in pin_lock
1 parent d04d76b commit cb4f96d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chipflow_lib/pin_lock.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ def allocate_pins(name: str, member: Dict[str, Any], pins: List[str]) -> Tuple[D
4141

4242
if member['type'] == 'interface' and 'annotations' in member \
4343
and PIN_ANNOTATION_SCHEMA in member['annotations']:
44-
logger.debug("matched PinSignature {sig}")
45-
name = name
4644
sig = member['annotations'][PIN_ANNOTATION_SCHEMA]
45+
logger.debug(f"matched PinSignature {sig}")
46+
name = name
4747
width = sig['width']
4848
pin_map[name] = {'pins': pins[0:width],
4949
'direction': sig['direction'],

0 commit comments

Comments
 (0)