Tools: flake8 fixes for board_list.py

This commit is contained in:
Peter Barker 2022-08-20 20:27:18 +10:00 committed by Peter Barker
parent af7208a65e
commit a3124689b1

View File

@ -25,6 +25,7 @@ class Board(object):
'Sub',
]
def in_blacklist(blacklist, b):
'''return true if board b is in the blacklist, including wildcards'''
for bl in blacklist:
@ -32,6 +33,7 @@ def in_blacklist(blacklist, b):
return True
return False
class BoardList(object):
def set_hwdef_dir(self):