We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8ed7cb commit 8e981d9Copy full SHA for 8e981d9
adafruit_irremote.py
@@ -353,10 +353,10 @@ def __init__(
353
self,
354
header: List[int],
355
one: List[int],
356
- zero: List[int],
+ zero: List[int],
357
trail: int,
358
*,
359
- debug: bool = False
+ debug: bool = False,
360
) -> None:
361
self.header = header
362
self.one = one
@@ -388,8 +388,8 @@ def transmit(
388
389
durations = array.array(
390
"H",
391
- [0]
392
- * (len(self.header) + bits_to_send * 2 + (0 if self.trail is None else 1))
+ [0]
+ * (len(self.header) + bits_to_send * 2 + (0 if self.trail is None else 1)),
393
)
394
395
for i, _ in enumerate(self.header):
0 commit comments