[Concept,10/11] buildman: Silence too-many-arguments warnings

Message ID 20260105183030.1487468-11-sjg@u-boot.org
State New
Headers
Series buildman: Refactor control and builderthread |

Commit Message

Simon Glass Jan. 5, 2026, 6:30 p.m. UTC
  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(+)
  

Patch

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"""