/ Multitasking_with_CircuitPython / .circuitpython.skip
.circuitpython.skip
 1  Multitasking_with_CircuitPython/code_blink_and_servo.py 94: Bad indentation. Found 20 spaces, expected 16 (bad-indentation)
 2  Multitasking_with_CircuitPython/code_blink_and_servo.py 70: Comparison 'led['PIN'].value == False' should be 'led['PIN'].value is False' if checking for the singleton value False, or 'not led['PIN'].value' if testing for falsiness (singleton-comparison)
 3  Multitasking_with_CircuitPython/code_blink_and_servo.py 74: Comparison 'led['PIN'].value == True' should be 'led['PIN'].value is True' if checking for the singleton value True, or 'led['PIN'].value' if testing for truthiness (singleton-comparison)
 4  Multitasking_with_CircuitPython/code_blink_and_servo.py 8: standard import "import time" should be placed before "import board" (wrong-import-order)
 5  Multitasking_with_CircuitPython/code_multiple_leds.py 46: Comparison 'led['PIN'].value == False' should be 'led['PIN'].value is False' if checking for the singleton value False, or 'not led['PIN'].value' if testing for falsiness (singleton-comparison)
 6  Multitasking_with_CircuitPython/code_multiple_leds.py 50: Comparison 'led['PIN'].value == True' should be 'led['PIN'].value is True' if checking for the singleton value True, or 'led['PIN'].value' if testing for truthiness (singleton-comparison)
 7  Multitasking_with_CircuitPython/code_multiple_leds.py 8: standard import "import time" should be placed before "import board" (wrong-import-order)
 8  Multitasking_with_CircuitPython/code_servo_without_sleep.py 47: Bad indentation. Found 20 spaces, expected 16 (bad-indentation)
 9  Multitasking_with_CircuitPython/code_servo_without_sleep.py 7: Unused import digitalio (unused-import)
10  Multitasking_with_CircuitPython/code_servo_without_sleep.py 8: standard import "import time" should be placed before "import board" (wrong-import-order)
11  Multitasking_with_CircuitPython/code_all_together.py 134: Bad indentation. Found 20 spaces, expected 16 (bad-indentation)
12  Multitasking_with_CircuitPython/code_all_together.py 111: Comparison 'led['PIN'].value == False' should be 'led['PIN'].value is False' if checking for the singleton value False, or 'not led['PIN'].value' if testing for falsiness (singleton-comparison)
13  Multitasking_with_CircuitPython/code_all_together.py 115: Comparison 'led['PIN'].value == True' should be 'led['PIN'].value is True' if checking for the singleton value True, or 'led['PIN'].value' if testing for truthiness (singleton-comparison)
14  Multitasking_with_CircuitPython/code_all_together.py 8: standard import "import time" should be placed before "import board" (wrong-import-order)
15  Multitasking_with_CircuitPython/code_multiple_leds_cpb.py 48: Consider iterating the dictionary directly instead of calling .keys() (consider-iterating-dictionary)
16  Multitasking_with_CircuitPython/code_multiple_leds_cpb.py 7: Unused import digitalio (unused-import)
17  Multitasking_with_CircuitPython/code_multiple_leds_cpb.py 8: Unused import board (unused-import)