diff options
author | Mats Wichmann <mats@linux.com> | 2021-05-05 17:52:25 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2021-05-05 17:52:25 (GMT) |
commit | 5a683d8293fb0f02ad8a0bf91bacc15442c3bf9a (patch) | |
tree | b48846726e31787759118ba358c1eaf83452efef /SCons/Node | |
parent | d7b1df36e2faf84c2b1789658300ceef90605997 (diff) | |
download | SCons-5a683d8293fb0f02ad8a0bf91bacc15442c3bf9a.zip SCons-5a683d8293fb0f02ad8a0bf91bacc15442c3bf9a.tar.gz SCons-5a683d8293fb0f02ad8a0bf91bacc15442c3bf9a.tar.bz2 |
Fix several sider complaints
Unfortunately, this made for more reformatting - sider complains
in some of these about indent not being a multiple of four because
one line of a block was touched, to eliminate had to reindent the whole
block, including all the lines not touched by the original commit.
Used a tool...
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'SCons/Node')
-rw-r--r-- | SCons/Node/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SCons/Node/__init__.py b/SCons/Node/__init__.py index b55d9e7..a449082 100644 --- a/SCons/Node/__init__.py +++ b/SCons/Node/__init__.py @@ -44,10 +44,11 @@ import collections import copy from itertools import chain, zip_longest +import SCons.Debug import SCons.Executor import SCons.Memoize from SCons.compat import NoSlotsPyPy -from SCons.Debug import track_instances, logInstanceCreation, Trace +from SCons.Debug import logInstanceCreation, Trace from SCons.Util import hash_signature, is_List, UniqueList, render_tree print_duplicate = 0 |