diff options
author | Simon Glass <sjg@chromium.org> | 2022-02-11 13:23:19 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-02 10:28:12 -0500 |
commit | ac05335d854179d4fb2cd018469b01682cba3a30 (patch) | |
tree | e89733d1a60d428601f5725b8afb58087f9b2487 /tools/buildman/builder.py | |
parent | 32cc6ae273128510cffc536fc72f260181ef1744 (diff) |
buildman: Correct pylint errors
Fix pylint errors that can be fixed and mask those that seem to be
incorrect.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/builder.py')
-rw-r--r-- | tools/buildman/builder.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py index 754642d4a68..ecbfa3e361e 100644 --- a/tools/buildman/builder.py +++ b/tools/buildman/builder.py @@ -1763,7 +1763,7 @@ class Builder: if self.num_threads: self.queue.put(job) else: - results = self._single_builder.RunJob(job) + self._single_builder.RunJob(job) if self.num_threads: term = threading.Thread(target=self.queue.join) |