diff options
author | Simon Glass <sjg@chromium.org> | 2025-05-07 17:50:20 +0200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2025-05-27 10:07:42 +0100 |
commit | 4f7bd6cae8fa3697d8b90a15b83c47087933f61b (patch) | |
tree | 98d2d9afa1be58495d4cff7227996ef6448253e1 | |
parent | afea95f65380b4f0e98db33252c1bdcc04cc972a (diff) |
patman: Add all files to __init__.py
Some files are missing from the __all__ list, so add then. Reformat the
list to use more of the width of each line.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | tools/patman/__init__.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/patman/__init__.py b/tools/patman/__init__.py index 6de0e9fba10..14451e35f36 100644 --- a/tools/patman/__init__.py +++ b/tools/patman/__init__.py @@ -1,5 +1,8 @@ # SPDX-License-Identifier: GPL-2.0+ -__all__ = ['checkpatch', 'commit', 'control', 'func_test', 'get_maintainer', - '__main__', 'patchstream', 'project', 'series', - 'settings', 'setup', 'status', 'test_checkpatch', 'test_settings'] +__all__ = [ + 'checkpatch', 'cmdline', 'commit', 'control', 'func_test', + 'get_maintainer', '__main__', 'patchstream', 'patchwork', 'project', + 'send', 'series', 'settings', 'setup', 'status', 'test_checkpatch', + 'test_settings' +] |