We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abdd9cf commit 916c977Copy full SHA for 916c977
examples/irremote_simpletest.py
@@ -19,7 +19,10 @@
19
print("Decoded:", code)
20
except adafruit_irremote.IRNECRepeatException: # unusual short code!
21
print("NEC repeat!")
22
- except (adafruit_irremote.IRDecodeException, adafruit_irremote.FailedToDecode) as e: # failed to decode
+ except (
23
+ adafruit_irremote.IRDecodeException,
24
+ adafruit_irremote.FailedToDecode,
25
+ ) as e: # failed to decode
26
print("Failed to decode: ", e.args)
27
28
print("----------------------------")
0 commit comments