Skip to content

Commit 8213cf6

Browse files
authored
Merge pull request adafruit#1234 from adafruit/kwarg-fix
Remove unnecessary kwarg.
2 parents f1e223c + 6b341ef commit 8213cf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Circuit_Playground_Express_and_IR/CPX_IR_Remote_Recieve.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
pulses = decoder.read_pulses(pulsein)
1212
try:
1313
# Attempt to convert received pulses into numbers
14-
received_code = decoder.decode_bits(pulses, debug=False)
14+
received_code = decoder.decode_bits(pulses)
1515
except adafruit_irremote.IRNECRepeatException:
1616
# We got an unusual short code, probably a 'repeat' signal
1717
# print("NEC repeat!")

0 commit comments

Comments
 (0)