disable some pylint errors

too much
This commit is contained in:
Mike Barela 2019-08-21 11:48:42 -04:00 committed by GitHub
parent 2a5851e764
commit 081c79379d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,6 +45,9 @@ def read_buttons():
btn = 1 btn = 1
return btn return btn
#pylint: disable-msg=too-many-nested-blocks
#pylint: disable-msg=too-many-branches
#pylint: disable-msg=too-many-statements
# display bitmap file # display bitmap file
def display_bitmap(epd, filename): def display_bitmap(epd, filename):
try: try:
@ -183,6 +186,9 @@ def show_files():
led.value = False led.value = False
return return
#pylint: disable-msg=too-many-branches
#pylint: disable-msg=too-many-statements
#pylint: disable-msg=too-many-locals
# run specified job # run specified job
def run_job(jobfile): def run_job(jobfile):
try: try: