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/main.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/main.py')
-rwxr-xr-x | tools/buildman/main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildman/main.py b/tools/buildman/main.py index 01271061e6..3b6af24080 100755 --- a/tools/buildman/main.py +++ b/tools/buildman/main.py @@ -30,8 +30,8 @@ from patman import terminal from patman import test_util def RunTests(skip_net_tests, verboose, args): - import func_test - import test + from buildman import func_test + from buildman import test import doctest result = unittest.TestResult() |