Skip to content

Commit 916c977

Browse files
committed
Reformatted per pre-commit
1 parent abdd9cf commit 916c977

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

examples/irremote_simpletest.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
print("Decoded:", code)
2020
except adafruit_irremote.IRNECRepeatException: # unusual short code!
2121
print("NEC repeat!")
22-
except (adafruit_irremote.IRDecodeException, adafruit_irremote.FailedToDecode) as e: # failed to decode
22+
except (
23+
adafruit_irremote.IRDecodeException,
24+
adafruit_irremote.FailedToDecode,
25+
) as e: # failed to decode
2326
print("Failed to decode: ", e.args)
2427

2528
print("----------------------------")

0 commit comments

Comments
 (0)