Skip to content

Commit 11e8de6

Browse files
committed
Linting.
1 parent 0fadba4 commit 11e8de6

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

Introducing_CircuitPlaygroundExpress/CircuitPlaygroundExpress_808_Drum_Machine.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
import touchio
55
import digitalio
66

7+
try:
8+
from audiocore import WaveFile
9+
except ImportError:
10+
from audioio import WaveFile
11+
712
try:
813
from audioio import AudioOut
914
except ImportError:
@@ -12,11 +17,6 @@
1217
except ImportError:
1318
pass # not always supported by every board!
1419

15-
try:
16-
from audiocore import WaveFile
17-
except ImportError:
18-
from audioio import WaveFile
19-
2020
bpm = 120 # Beats per minute, change this to suit your tempo
2121

2222
# Enable the speaker

0 commit comments

Comments
 (0)