diff options
author | Simon Glass <sjg@chromium.org> | 2023-09-23 13:43:52 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2023-10-04 09:25:20 -0600 |
commit | b5aa5a32e99ae3c808e613e8a03cf9ad8aa7ff6e (patch) | |
tree | 7e0df4b92ef5ec9b8e018f6dc3612a5a2d0dcfab | |
parent | ad1f187c18c65a3c0fe09c8a2dbba26ee8173098 (diff) |
moveconfig: Correct ordering of asteval import
This should be after the standard imports. Move it to avoid a lot of
pylint warnings.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rwxr-xr-x | tools/moveconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/moveconfig.py b/tools/moveconfig.py index 2f7dee88c7e..a6dbda7bd0e 100755 --- a/tools/moveconfig.py +++ b/tools/moveconfig.py @@ -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 |