From 8aafb325096c6bc037e9ba38df6230e6efa6a204 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Sat, 12 Dec 2020 17:27:59 -0800 Subject: Fix sider complaints --- SCons/UtilTests.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/SCons/UtilTests.py b/SCons/UtilTests.py index 2be2672..5406a31 100644 --- a/SCons/UtilTests.py +++ b/SCons/UtilTests.py @@ -21,20 +21,22 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -import SCons.compat - +from collections import UserDict, UserList, UserString, OrderedDict import functools import io import os import sys import unittest -from collections import UserDict, UserList, UserString import TestCmd import SCons.Errors +import SCons.compat +from SCons.Util import hash_signature, get_os_env_bool, get_env_bool, flatten, to_bytes, to_String, render_tree, to_str, \ + is_Dict, is_String, is_List, splitext, print_tree, is_Tuple, silent_intern, get_native_path, get_environment_var, \ + display, containsAny, containsAll, containsOnly, WhereIs, Selector, adjustixes, Proxy, AddPathIfNotExists, \ + PrependPath, NodeList, AppendPath, LogicalLines, hash_collect -from SCons.Util import * class OutBuffer: def __init__(self): -- cgit v0.12