Skip to content

Commit 96403ae

Browse files
committed
Fix import order.
1 parent 48ca809 commit 96403ae

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

examples/irremote_nonblocking.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33

44
# Circuit Playground Express Demo Code
55
# Adjust the pulseio 'board.PIN' if using something else
6-
import pulseio
7-
import board
8-
import adafruit_irremote
96
import time
107

8+
import adafruit_irremote
9+
import board
10+
import pulseio
11+
1112
pulsein = pulseio.PulseIn(board.REMOTEIN, maxlen=120, idle_state=True)
1213
decoder = adafruit_irremote.NonblockingGenericDecode(pulsein)
1314

0 commit comments

Comments
 (0)