Skip to content

Commit aed93d4

Browse files
authored
Update thread_print_fstrings.py
`clk + led` -> `cnt + led`
1 parent 47bc397 commit aed93d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/extension/thread_/print_fstrings/thread_print_fstrings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def blink():
2727
print()
2828
print('led = %0d (%b)' % (led, led))
2929
print(f'{cnt = :0d} ({cnt:b})')
30-
print(f'clk + led = {clk + led}')
30+
print(f'cnt + led = {cnt + led}')
3131

3232
th = vthread.Thread(m, 'th_blink', clk, rst, blink)
3333
fsm = th.start()

0 commit comments

Comments
 (0)