Skip to content

Commit 873b8fd

Browse files
committed
Fix flake8 check for python3.5
1 parent 21f5255 commit 873b8fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/checkbox-ce-oem/checkbox-provider-ce-oem/bin/button_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self, irq_name: str):
3333
self.irq_name = irq_name
3434
# It maps each IRQ number to its list of target CPUs.
3535
# Example: {35: [0, 1], 36: [2, 3]}
36-
self.irq_numbers: Dict[int, List[int]] = {}
36+
self.irq_numbers = {} # type: Dict[int, List[int]]
3737
self.num_cpus = os.cpu_count()
3838

3939
def _get_irq_numbers(self) -> bool:

0 commit comments

Comments
 (0)