Skip to content

Commit 6649ec7

Browse files
committed
fix: debug message in pin_lock
1 parent 04fc508 commit 6649ec7

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
options = sig['options']
4949
pin_map[name] = {'pins': pins[0:width],

0 commit comments

Comments
 (0)