From: Simon Glass <simon.glass@canonical.com> Many functions in builderthread have too many arguments, but it seems easier to keep it that way. Silence the warnings. Signed-off-by: Simon Glass <simon.glass@canonical.com> --- tools/buildman/builderthread.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py index d5c8c6141eb..bcebae5f327 100644 --- a/tools/buildman/builderthread.py +++ b/tools/buildman/builderthread.py @@ -221,6 +221,7 @@ class BuilderThread(threading.Thread): toolchain: Toolchain object to use for building, or None if not yet selected """ + # pylint: disable=R0913 def __init__(self, builder, thread_num, mrproper, per_board_out_dir, test_exception=False): """Set up a new builder thread""" -- 2.43.0