]> git.baikalelectronics.ru Git - uboot.git/commitdiff
patman: remove extraneous imports
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>
Sat, 17 Dec 2022 01:45:27 +0000 (20:45 -0500)
committerSimon Glass <sjg@chromium.org>
Fri, 6 Jan 2023 02:21:56 +0000 (19:21 -0700)
* tools/patman/main.py: Remove extraneous imports and fix indentation.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@savoirfairelinux.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
tools/patman/main.py

index 5a7756a221b8c6d333c2d2668a15ae374405306d..8067a288abca093eeab30693a8d90f26ceb06d98 100755 (executable)
@@ -9,7 +9,6 @@
 from argparse import ArgumentParser
 import os
 import re
-import shutil
 import sys
 import traceback
 
@@ -19,7 +18,6 @@ if __name__ == "__main__":
     sys.path.append(os.path.join(our_path, '..'))
 
 # Our modules
-from patman import command
 from patman import control
 from patman import gitutil
 from patman import project
@@ -136,7 +134,6 @@ if not args.debug:
 
 # Run our meagre tests
 if args.cmd == 'test':
-    import doctest
     from patman import func_test
 
     result = test_util.run_test_suites(
@@ -183,7 +180,7 @@ elif args.cmd == 'status':
                                  args.show_comments, args.patchwork_url)
     except Exception as e:
         terminal.tprint('patman: %s: %s' % (type(e).__name__, e),
-                       colour=terminal.Color.RED)
+                        colour=terminal.Color.RED)
         if args.debug:
             print()
             traceback.print_exc()