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>
This commit is contained in:
Simon Glass 2022-02-11 13:23:19 -07:00 committed by Tom Rini
parent 32cc6ae273
commit ac05335d85
5 changed files with 7 additions and 12 deletions

View file

@ -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)