File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
contrib/checkbox-ce-oem/checkbox-provider-ce-oem/bin Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def __init__(self, irq_name: str):
33
33
self .irq_name = irq_name
34
34
# It maps each IRQ number to its list of target CPUs.
35
35
# Example: {35: [0, 1], 36: [2, 3]}
36
- self .irq_numbers : Dict [int , List [int ]] = {}
36
+ self .irq_numbers = {} # type : Dict[int, List[int]]
37
37
self .num_cpus = os .cpu_count ()
38
38
39
39
def _get_irq_numbers (self ) -> bool :
@@ -176,7 +176,7 @@ def run_test(self) -> bool:
176
176
raise RuntimeError ("Could not get CPU affinities for all IRQs." )
177
177
178
178
# Store initial counts for all monitored IRQs
179
- initial_counts_map : Dict [int , List [int ]] = {}
179
+ initial_counts_map = {} # type : Dict[int, List[int]]
180
180
for irq in self .irq_numbers :
181
181
counts = self ._get_interrupt_counts (irq )
182
182
if counts is None :
You can’t perform that action at this time.
0 commit comments