Skip to content

Commit 61acd77

Browse files
authored
Remove redundant linefeed
1 parent 5c4c80e commit 61acd77

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

irq/irq.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from machine import Pin
22

33
p2 = Pin(2, Pin.IN, Pin.PULL_UP)
4-
p2.irq(lambda pin: print("IRQ with flags:", pin.irq().flags()),
5-
Pin.IRQ_FALLING)
4+
p2.irq(lambda pin: print("IRQ with flags:", pin.irq().flags()), Pin.IRQ_FALLING)

0 commit comments

Comments
 (0)