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>
This commit is contained in:
Simon Glass
2025-05-07 17:50:20 +02:00
parent 6127d9d262
commit d7a1359623

View 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'
]