]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
moveconfig: Correct ordering of asteval import
authorSimon Glass <sjg@chromium.org>
Sat, 23 Sep 2023 19:43:52 +0000 (13:43 -0600)
committerSimon Glass <sjg@chromium.org>
Wed, 4 Oct 2023 15:25:20 +0000 (09:25 -0600)
This should be after the standard imports. Move it to avoid a lot of
pylint warnings.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/moveconfig.py

index 2f7dee88c7ee095875fe319738f6994162b04506..a6dbda7bd0ea19795d9051ac771c7621bd396f45 100755 (executable)
@@ -11,7 +11,6 @@ See doc/develop/moveconfig.rst for documentation.
 """
 
 from argparse import ArgumentParser
-import asteval
 import collections
 from contextlib import ExitStack
 import copy
@@ -32,6 +31,7 @@ import threading
 import time
 import unittest
 
+import asteval
 from buildman import bsettings
 from buildman import kconfiglib
 from buildman import toolchain