diff options
author | Simon Glass <sjg@chromium.org> | 2025-03-16 08:00:18 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-04-01 08:46:41 -0600 |
commit | 3703298e57c8d749b3c06798f5873562754fb84c (patch) | |
tree | 3de0313b24923a37990383780bbf2655ed7271b8 /tools/buildman/func_test.py | |
parent | 9b4b86f90c3a0484d4ecdcdb9977c385363ce5f8 (diff) |
u_boot_pylib: Clean up pylint warnings in gitutil.py
This file has about 40 pylint warnings, but no errors.
Quite a few of these warnings have been there for a while, but most are
coming from newer versions of pylint, where people come up with new
warnings.
The f-string warning is the most common one:
C0209: Formatting a regular string which could be an f-string
That feature was not available when the code was written, but it is
often more convenient than using % with a list of arguments.
This patches reduces the number of warnings in this file, with 7 left
remaining.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/func_test.py')
-rw-r--r-- | tools/buildman/func_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/buildman/func_test.py b/tools/buildman/func_test.py index d779040c74e..b45eb95a1e6 100644 --- a/tools/buildman/func_test.py +++ b/tools/buildman/func_test.py @@ -288,11 +288,11 @@ class TestFunctional(unittest.TestCase): """Test gitutils.Setup(), from outside the module itself""" command.TEST_RESULT = command.CommandResult(return_code=1) gitutil.setup() - self.assertEqual(gitutil.use_no_decorate, False) + self.assertEqual(gitutil.USE_NO_DECORATE, False) command.TEST_RESULT = command.CommandResult(return_code=0) gitutil.setup() - self.assertEqual(gitutil.use_no_decorate, True) + self.assertEqual(gitutil.USE_NO_DECORATE, True) def _HandleCommandGitLog(self, args): if args[-1] == '--': |