Skip to content

Commit a426be2

Browse files
committed
Add 141 skip files
Each skip file has been populated with the pylint errors I actually got locally when checking the file.
1 parent d924013 commit a426be2

File tree

141 files changed

+726
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+726
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3D_Printed_LED_Microphone_Flag/3D_Printed_LED_Microphone_Flag.py 137: Consider using tuple unpacking for swapping variables (consider-swap-variables)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ABC_Soundboards_for_NeoTrellis/code.py 169: Comparison 'currently_playing['voice'] != None' should be 'currently_playing['voice'] is not None' (singleton-comparison)
2+
ABC_Soundboards_for_NeoTrellis/code.py 186: Comparison 'currently_playing['voice'] != None' should be 'currently_playing['voice'] is not None' (singleton-comparison)

Adafruit_MAX98357/.circuitpython.skip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Adafruit_MAX98357/I2S_Test_Script.py 30: Unnecessary "else" after "continue" (no-else-continue)

Adafruit_UDA1334A/.circuitpython.skip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Adafruit_UDA1334A/I2S_Test_Script.py 30: Unnecessary "else" after "continue" (no-else-continue)

BLE_Client_Server/.circuitpython.skip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BLE_Client_Server/client.py 77: Consider merging these comparisons with "in" to 'color_index in (0, 28)' (consider-using-in)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BLE_Heart_Rate_Trainer/ble_heart_rate_trainer.py 154: Comparison to literal (literal-comparison)
2+
BLE_Heart_Rate_Trainer/ble_heart_rate_trainer.py 158: Comparison to literal (literal-comparison)

BLE_Host_Computer/.circuitpython.skip

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
BLE_Host_Computer/ble_eval_server.py 22: Catching too general exception Exception (broad-except)
2+
BLE_Host_Computer/ble_eval_server.py 21: Use of eval (eval-used)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Bluetooth_Restroom_Keys/code.py 84: Catching too general exception Exception (broad-except)
2+
Bluetooth_Restroom_Keys/code.py 6: standard import "from array import array" should be placed before "from adafruit_ble import BLERadio" (wrong-import-order)
3+
Bluetooth_Restroom_Keys/code.py 11: standard import "from math import pi, sin" should be placed before "from adafruit_ble import BLERadio" (wrong-import-order)
4+
Bluetooth_Restroom_Keys/code.py 13: standard import "from time import sleep" should be placed before "from adafruit_ble import BLERadio" (wrong-import-order)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Bluetooth_Room_Lights/code.py 4: Line too long (101/100) (line-too-long)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
BrainCraft_Google_Assistant/gv_buttontotalk.py 29: Import "import click" should be placed at the top of the module (wrong-import-position)
2+
BrainCraft_Google_Assistant/gv_buttontotalk.py 30: Import "import grpc" should be placed at the top of the module (wrong-import-position)
3+
BrainCraft_Google_Assistant/gv_buttontotalk.py 31: Import "import google.auth.transport.grpc" should be placed at the top of the module (wrong-import-position)
4+
BrainCraft_Google_Assistant/gv_buttontotalk.py 32: Import "import google.auth.transport.requests" should be placed at the top of the module (wrong-import-position)
5+
BrainCraft_Google_Assistant/gv_buttontotalk.py 33: Import "import google.oauth2.credentials" should be placed at the top of the module (wrong-import-position)
6+
BrainCraft_Google_Assistant/gv_buttontotalk.py 35: Import "from google.assistant.embedded.v1alpha2 import embedded_assistant_pb2, embedded_assistant_pb2_grpc" should be placed at the top of the module (wrong-import-position)
7+
BrainCraft_Google_Assistant/gv_buttontotalk.py 39: Import "from tenacity import retry, stop_after_attempt, retry_if_exception" should be placed at the top of the module (wrong-import-position)
8+
BrainCraft_Google_Assistant/gv_buttontotalk.py 55: Consider explicitly re-raising using the 'from' keyword (raise-missing-from)
9+
BrainCraft_Google_Assistant/gv_buttontotalk.py 82: Class 'SampleAssistant' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
10+
BrainCraft_Google_Assistant/gv_buttontotalk.py 132: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
11+
BrainCraft_Google_Assistant/gv_buttontotalk.py 137: Method should have "self" as first argument (no-self-argument)
12+
BrainCraft_Google_Assistant/gv_buttontotalk.py 148: Too many branches (13/12) (too-many-branches)
13+
BrainCraft_Google_Assistant/gv_buttontotalk.py 351: Too many local variables (39/15) (too-many-locals)
14+
BrainCraft_Google_Assistant/gv_buttontotalk.py 426: Catching too general exception Exception (broad-except)
15+
BrainCraft_Google_Assistant/gv_buttontotalk.py 484: Catching too general exception Exception (broad-except)
16+
BrainCraft_Google_Assistant/gv_buttontotalk.py 485: Use lazy % formatting in logging functions (logging-not-lazy)
17+
BrainCraft_Google_Assistant/gv_buttontotalk.py 530: Use lazy % formatting in logging functions (logging-not-lazy)
18+
BrainCraft_Google_Assistant/gv_buttontotalk.py 536: Unused variable 'i' (unused-variable)
19+
BrainCraft_Google_Assistant/gv_buttontotalk.py 379: Unused argument 'args' (unused-argument)
20+
BrainCraft_Google_Assistant/gv_buttontotalk.py 379: Unused argument 'kwargs' (unused-argument)
21+
BrainCraft_Google_Assistant/gv_buttontotalk.py 522: Unused variable 'onoff' (unused-variable)
22+
BrainCraft_Google_Assistant/gv_buttontotalk.py 529: Unused variable 'blink' (unused-variable)
23+
BrainCraft_Google_Assistant/gv_buttontotalk.py 351: Too many branches (15/12) (too-many-branches)
24+
BrainCraft_Google_Assistant/gv_buttontotalk.py 351: Too many statements (81/50) (too-many-statements)
25+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'api_endpoint' in function call (no-value-for-parameter)
26+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'credentials' in function call (no-value-for-parameter)
27+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'project_id' in function call (no-value-for-parameter)
28+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'device_model_id' in function call (no-value-for-parameter)
29+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'device_id' in function call (no-value-for-parameter)
30+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'device_config' in function call (no-value-for-parameter)
31+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'lang' in function call (no-value-for-parameter)
32+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'display' in function call (no-value-for-parameter)
33+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'verbose' in function call (no-value-for-parameter)
34+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'input_audio_file' in function call (no-value-for-parameter)
35+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'output_audio_file' in function call (no-value-for-parameter)
36+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'audio_sample_rate' in function call (no-value-for-parameter)
37+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'audio_sample_width' in function call (no-value-for-parameter)
38+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'audio_iter_size' in function call (no-value-for-parameter)
39+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'audio_block_size' in function call (no-value-for-parameter)
40+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'audio_flush_size' in function call (no-value-for-parameter)
41+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'grpc_deadline' in function call (no-value-for-parameter)
42+
BrainCraft_Google_Assistant/gv_buttontotalk.py 586: No value for argument 'once' in function call (no-value-for-parameter)
43+
BrainCraft_Google_Assistant/gv_buttontotalk.py 23: standard import "import sys" should be placed before "import pathlib2 as pathlib" (wrong-import-order)
44+
BrainCraft_Google_Assistant/gv_buttontotalk.py 24: standard import "import time" should be placed before "import pathlib2 as pathlib" (wrong-import-order)
45+
BrainCraft_Google_Assistant/gv_buttontotalk.py 25: standard import "import uuid" should be placed before "import pathlib2 as pathlib" (wrong-import-order)

BusyBox_Sign/.circuitpython.skip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BusyBox_Sign/code.py 1: Unused import time (unused-import)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Buzzing_Mindfulness_Bracelet/Buzzing_Mindfulness_Bracelet.py 21: Simplify chained comparison between the operands (chained-comparison)

CLUE_Altimeter/.circuitpython.skip

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CLUE_Altimeter/clue_altimeter.py 26: Access to a protected member _pressure of a client class (protected-access)
2+
CLUE_Altimeter/clue_altimeter.py 27: Access to a protected member _pressure of a client class (protected-access)
3+
CLUE_Altimeter/clue_altimeter.py 28: Access to a protected member _pressure of a client class (protected-access)
4+
CLUE_Altimeter/clue_altimeter.py 29: Access to a protected member _pressure of a client class (protected-access)
5+
CLUE_Altimeter/clue_altimeter.py 30: Access to a protected member _pressure of a client class (protected-access)
6+
CLUE_Altimeter/clue_altimeter.py 121: Redefining name 'now' from outer scope (line 172) (redefined-outer-name)
7+
CLUE_Altimeter/clue_altimeter.py 110: Unused argument 'current_sea_level_pressure' (unused-argument)
8+
CLUE_Altimeter/clue_altimeter.py 7: Unused bitmap_font imported from adafruit_bitmap_font (unused-import)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CLUE_Heart_Rate_Trainer/clue_heart_rate_trainer.py 91: Comparison to literal (literal-comparison)
2+
CLUE_Heart_Rate_Trainer/clue_heart_rate_trainer.py 93: Comparison to literal (literal-comparison)
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CLUE_Light_Painter/bmp2led.py 14: Unnecessary pass statement (unnecessary-pass)
2+
CLUE_Light_Painter/bmp2led.py 392: Unnecessary "else" after "raise" (no-else-raise)
3+
CLUE_Light_Painter/bmp2led.py 393: Consider explicitly re-raising using the 'from' keyword (raise-missing-from)
4+
CLUE_Light_Painter/bmp2led.py 395: Consider explicitly re-raising using the 'from' keyword (raise-missing-from)
5+
CLUE_Light_Painter/bmp2led.py 167: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
6+
CLUE_Light_Painter/code.py 317: Comparison to literal (literal-comparison)
7+
CLUE_Light_Painter/code.py 361: Unnecessary "else" after "break" (no-else-break)

CLUE_Metronome/.circuitpython.skip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CLUE_Metronome/clue_metronome.py 155: Comparison to literal (literal-comparison)

CLUE_Milk_Checker/.circuitpython.skip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CLUE_Milk_Checker/code.py 3: Unused import terminalio (unused-import)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CLUE_Rock_Paper_Scissors/advanced/rps_comms.py 160: Unnecessary "else" after "break" (no-else-break)
2+
CLUE_Rock_Paper_Scissors/advanced/rps_comms.py 229: Dangerous default value {} as argument (dangerous-default-value)
3+
CLUE_Rock_Paper_Scissors/advanced/rps_comms.py 229: Dangerous default value {} as argument (dangerous-default-value)
4+
CLUE_Rock_Paper_Scissors/advanced/rps_display.py 133: Import outside toplevel (adafruit_imageload) (import-outside-toplevel)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CLUE_Rock_Paper_Scissors/advanced/rps_comms.py 160: Unnecessary "else" after "break" (no-else-break)
2+
CLUE_Rock_Paper_Scissors/advanced/rps_comms.py 229: Dangerous default value {} as argument (dangerous-default-value)
3+
CLUE_Rock_Paper_Scissors/advanced/rps_comms.py 229: Dangerous default value {} as argument (dangerous-default-value)
4+
CLUE_Rock_Paper_Scissors/advanced/rps_display.py 133: Import outside toplevel (adafruit_imageload) (import-outside-toplevel)
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CLUE_Sensor_Plotter/plot_source.py 225: Unnecessary use of a comprehension (unnecessary-comprehension)
2+
CLUE_Sensor_Plotter/plot_source.py 245: Consider using a generator instead 'tuple(ana.value * self._conversion_factor for ana in self._analogin)' (consider-using-generator)
3+
CLUE_Sensor_Plotter/clue-plotter.py 223: Unnecessary "elif" after "break" (no-else-break)
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CP101_StateMachines/classes/code.py 206: Class 'StateMachine' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
2+
CP101_StateMachines/classes/code.py 268: Class 'State' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CP101_StateMachines/classes/code.py 206: Class 'StateMachine' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
2+
CP101_StateMachines/classes/code.py 268: Class 'State' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)

CPB_Volume_BLE/.circuitpython.skip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CPB_Volume_BLE/cpb_volume_ble.py 78: Unnecessary "else" after "continue" (no-else-continue)

CPX_DAC_Guide/.circuitpython.skip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CPX_DAC_Guide/adafruit_logo_vector.py 11: Bad option value 'bad-continuation' (bad-option-value)

CPX_Simon_Game/.circuitpython.skip

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CPX_Simon_Game/code.py 60: Unnecessary "elif" after "break" (no-else-break)

CPX_Simple_Simon/.circuitpython.skip

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
CPX_Simple_Simon/code.py 29: Trailing whitespace (trailing-whitespace)
2+
CPX_Simple_Simon/code.py 60: Trailing whitespace (trailing-whitespace)
3+
CPX_Simple_Simon/code.py 78: Trailing whitespace (trailing-whitespace)
4+
CPX_Simple_Simon/code.py 87: Trailing whitespace (trailing-whitespace)
5+
CPX_Simple_Simon/code.py 91: Trailing whitespace (trailing-whitespace)
6+
CPX_Simple_Simon/code.py 100: Trailing whitespace (trailing-whitespace)
7+
CPX_Simple_Simon/code.py 101: Trailing whitespace (trailing-whitespace)
8+
CPX_Simple_Simon/code.py 117: Trailing whitespace (trailing-whitespace)
9+
CPX_Simple_Simon/code.py 120: Trailing whitespace (trailing-whitespace)
10+
CPX_Simple_Simon/code.py 124: Trailing whitespace (trailing-whitespace)
11+
CPX_Simple_Simon/code.py 128: Trailing whitespace (trailing-whitespace)
12+
CPX_Simple_Simon/code.py 129: Trailing whitespace (trailing-whitespace)
13+
CPX_Simple_Simon/code.py 130: Trailing whitespace (trailing-whitespace)
14+
CPX_Simple_Simon/code.py 131: Trailing whitespace (trailing-whitespace)
15+
CPX_Simple_Simon/code.py 132: Trailing whitespace (trailing-whitespace)
16+
CPX_Simple_Simon/code.py 138: Trailing whitespace (trailing-whitespace)
17+
CPX_Simple_Simon/code.py 141: Trailing whitespace (trailing-whitespace)
18+
CPX_Simple_Simon/code.py 142: Trailing whitespace (trailing-whitespace)
19+
CPX_Simple_Simon/code.py 143: Trailing whitespace (trailing-whitespace)
20+
CPX_Simple_Simon/code.py 144: Trailing whitespace (trailing-whitespace)
21+
CPX_Simple_Simon/code.py 145: Trailing whitespace (trailing-whitespace)
22+
CPX_Simple_Simon/code.py 149: Trailing whitespace (trailing-whitespace)
23+
CPX_Simple_Simon/code.py 152: Trailing whitespace (trailing-whitespace)
24+
CPX_Simple_Simon/code.py 153: Trailing whitespace (trailing-whitespace)
25+
CPX_Simple_Simon/code.py 154: Trailing whitespace (trailing-whitespace)
26+
CPX_Simple_Simon/code.py 155: Trailing whitespace (trailing-whitespace)
27+
CPX_Simple_Simon/code.py 157: Trailing whitespace (trailing-whitespace)
28+
CPX_Simple_Simon/code.py 168: Trailing whitespace (trailing-whitespace)
29+
CPX_Simple_Simon/code.py 182: Trailing whitespace (trailing-whitespace)
30+
CPX_Simple_Simon/code.py 183: Trailing whitespace (trailing-whitespace)
31+
CPX_Simple_Simon/code.py 34: Redefining name 'skill_level' from outer scope (line 160) (redefined-outer-name)
32+
CPX_Simple_Simon/code.py 48: Redefining name 'skill_level' from outer scope (line 160) (redefined-outer-name)
33+
CPX_Simple_Simon/code.py 72: Comparison 'button['freq'] == None' should be 'button['freq'] is None' (singleton-comparison)
34+
CPX_Simple_Simon/code.py 79: Redefining name 'sequence' from outer scope (line 161) (redefined-outer-name)
35+
CPX_Simple_Simon/code.py 79: Redefining name 'step' from outer scope (line 170) (redefined-outer-name)
36+
CPX_Simple_Simon/code.py 94: More than one statement on a single line (multiple-statements)
37+
CPX_Simple_Simon/code.py 95: More than one statement on a single line (multiple-statements)
38+
CPX_Simple_Simon/code.py 96: More than one statement on a single line (multiple-statements)
39+
CPX_Simple_Simon/code.py 97: More than one statement on a single line (multiple-statements)
40+
CPX_Simple_Simon/code.py 98: More than one statement on a single line (multiple-statements)
41+
CPX_Simple_Simon/code.py 99: More than one statement on a single line (multiple-statements)
42+
CPX_Simple_Simon/code.py 100: More than one statement on a single line (multiple-statements)
43+
CPX_Simple_Simon/code.py 93: Either all return statements in a function should return an expression, or none of them should. (inconsistent-return-statements)
44+
CPX_Simple_Simon/code.py 93: Too many return statements (7/6) (too-many-return-statements)
45+
CPX_Simple_Simon/code.py 112: Redefining name 'step' from outer scope (line 170) (redefined-outer-name)
46+
CPX_Simple_Simon/code.py 127: Unused variable 'i' (unused-variable)
47+
CPX_Simple_Simon/code.py 173: Comparison 'guess == None' should be 'guess is None' (singleton-comparison)
48+
CPX_Simple_Simon/code.py 10: Unused import math (unused-import)
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Christmas_Soundboard/code.py 154: Comparison 'currently_playing['voice'] != None' should be 'currently_playing['voice'] is not None' (singleton-comparison)
2+
Christmas_Soundboard/code.py 174: Comparison 'currently_playing['voice'] != None' should be 'currently_playing['voice'] is not None' (singleton-comparison)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CircuitPython_Flying_Toasters/code.py 44: Simplify chained comparison between the operands (chained-comparison)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CircuitPython_JEplayer_mp3/code.py 237: Line too long (103/100) (line-too-long)
2+
CircuitPython_JEplayer_mp3/code.py 496: Line too long (104/100) (line-too-long)
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CircuitPython_Logger/ble_handler.py 16: Bad option value 'missing-super-argument' (bad-option-value)
2+
CircuitPython_Logger/uart_handler.py 16: Bad option value 'missing-super-argument' (bad-option-value)
3+
CircuitPython_Logger/file_handler.py 15: Bad option value 'missing-super-argument' (bad-option-value)
4+
CircuitPython_Logger/aio_handler.py 15: Bad option value 'missing-super-argument' (bad-option-value)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CircuitPython_MacroPad_NKRO/boot.py 57: Trailing whitespace (trailing-whitespace)
2+
CircuitPython_MacroPad_NKRO/code.py 31: Line too long (117/100) (line-too-long)
3+
CircuitPython_MacroPad_NKRO/code.py 57: Trailing whitespace (trailing-whitespace)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CircuitPython_Made_Easy_On_CPX/cpx_acceleration_neopixels.py 6: Unnecessary "else" after "continue" (no-else-continue)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CircuitPython_Painter/main.py 98: Unnecessary "else" after "raise" (no-else-raise)
2+
CircuitPython_Painter/main.py 99: Consider explicitly re-raising using the 'from' keyword (raise-missing-from)
3+
CircuitPython_Painter/main.py 101: Consider explicitly re-raising using the 'from' keyword (raise-missing-from)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CircuitPython_PyPaint/code.py 32: Class 'Color' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
2+
CircuitPython_PyPaint/code.py 51: Class 'TouchscreenPoller' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
3+
CircuitPython_PyPaint/code.py 108: Class 'CursorPoller' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
4+
CircuitPython_PyPaint/code.py 149: Class 'Paint' inherits from object, can be safely removed from bases in python3 (useless-object-inheritance)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CircuitPython_Pyloton/pyloton.py 173: Line too long (126/100) (line-too-long)
2+
CircuitPython_Pyloton/pyloton.py 547: Using a conditional statement with a constant value (using-constant-test)
3+
CircuitPython_Pyloton/pyloton.py 552: Using a conditional statement with a constant value (using-constant-test)
4+
CircuitPython_Pyloton/pyloton.py 557: Using a conditional statement with a constant value (using-constant-test)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CircuitPython_Quick_Starts/UART_Test_Script.py 32: Unnecessary "else" after "continue" (no-else-continue)

0 commit comments

Comments
 (0)