]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
patman: Add all files to __init__.py
authorSimon Glass <sjg@chromium.org>
Wed, 7 May 2025 15:50:20 +0000 (17:50 +0200)
committerSimon Glass <sjg@chromium.org>
Tue, 27 May 2025 09:07:42 +0000 (10:07 +0100)
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>
tools/patman/__init__.py

index 6de0e9fba103be96473050b7f0c890142deecfa4..14451e35f36e9277b9f9709b0a968bd9f6211503 100644 (file)
@@ -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'
+]