u-boot/tools/u_boot_pylib
Simon Glass 3703298e57 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>
2025-04-01 08:46:41 -06:00
..
__init__.py u_boot_pylib: Move gitutil into the library 2025-02-17 11:17:55 -06:00
__main__.py u_boot_pylib: Move gitutil into the library 2025-02-17 11:17:55 -06:00
command.py u_boot_pylib: Add a function to run a single command 2025-03-04 13:31:49 -06:00
cros_subprocess.py
gitutil.py u_boot_pylib: Clean up pylint warnings in gitutil.py 2025-04-01 08:46:41 -06:00
LICENSE
pyproject.toml tools: Move python tools to version 0.0.6 2023-12-13 18:39:06 -05:00
README.rst u_boot_pylib: Correct readme formatting 2023-12-13 18:39:05 -05:00
requirements.txt python: Create requirements.txt files for each "project" 2025-02-14 17:11:35 -06:00
terminal.py buildman: Add a way to limit the number of buildmans 2024-07-03 07:36:33 +01:00
test_util.py u_boot_pylib: Support running coverage on selected functions 2024-10-18 14:10:22 -06:00
tools.py u_boot_pylib: Add a function to run a single command 2025-03-04 13:31:49 -06:00
tout.py
u_boot_pylib

.. SPDX-License-Identifier: GPL-2.0+

# U-Boot Python Library
=======================

This is a Python library used by various U-Boot tools, including patman,
buildman and binman.

The module can be installed with pip::

   pip install u_boot_pylib

or via setup.py::

   ./setup.py install [--user]