disable some pylint errors
too much
This commit is contained in:
parent
2a5851e764
commit
081c79379d
1 changed files with 6 additions and 0 deletions
|
|
@ -45,6 +45,9 @@ def read_buttons():
|
|||
btn = 1
|
||||
return btn
|
||||
|
||||
#pylint: disable-msg=too-many-nested-blocks
|
||||
#pylint: disable-msg=too-many-branches
|
||||
#pylint: disable-msg=too-many-statements
|
||||
# display bitmap file
|
||||
def display_bitmap(epd, filename):
|
||||
try:
|
||||
|
|
@ -183,6 +186,9 @@ def show_files():
|
|||
led.value = False
|
||||
return
|
||||
|
||||
#pylint: disable-msg=too-many-branches
|
||||
#pylint: disable-msg=too-many-statements
|
||||
#pylint: disable-msg=too-many-locals
|
||||
# run specified job
|
||||
def run_job(jobfile):
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in a new issue