Skip to content

Commit 8e981d9

Browse files
author
Taiki Komoda
committed
Correction by linting
1 parent b8ed7cb commit 8e981d9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

adafruit_irremote.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -353,10 +353,10 @@ def __init__(
353353
self,
354354
header: List[int],
355355
one: List[int],
356-
zero: List[int],
356+
zero: List[int],
357357
trail: int,
358358
*,
359-
debug: bool = False
359+
debug: bool = False,
360360
) -> None:
361361
self.header = header
362362
self.one = one
@@ -388,8 +388,8 @@ def transmit(
388388

389389
durations = array.array(
390390
"H",
391-
[0]
392-
* (len(self.header) + bits_to_send * 2 + (0 if self.trail is None else 1))
391+
[0]
392+
* (len(self.header) + bits_to_send * 2 + (0 if self.trail is None else 1)),
393393
)
394394

395395
for i, _ in enumerate(self.header):

0 commit comments

Comments
 (0)