diff options
author | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2022-06-16 21:10:21 (GMT) |
---|---|---|
committer | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2022-06-16 21:10:21 (GMT) |
commit | a5cb849e6584f5feb9240f4ca773799ac7a6de57 (patch) | |
tree | 9d619270c544aa03754ecbdc8a5d25723e7d2703 | |
parent | 736c7e5a7406dd2dcb5b988a330701f8eed70119 (diff) | |
download | SCons-a5cb849e6584f5feb9240f4ca773799ac7a6de57.zip SCons-a5cb849e6584f5feb9240f4ca773799ac7a6de57.tar.gz SCons-a5cb849e6584f5feb9240f4ca773799ac7a6de57.tar.bz2 |
Remove unnecessary variable initialization
-rw-r--r-- | SCons/Tool/MSCommon/vc.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/SCons/Tool/MSCommon/vc.py b/SCons/Tool/MSCommon/vc.py index ec508a8..ae5cf3c 100644 --- a/SCons/Tool/MSCommon/vc.py +++ b/SCons/Tool/MSCommon/vc.py @@ -2555,7 +2555,6 @@ class _ScriptArguments: filepath = os.path.join(build_dir, filename) debug('default toolset: check file=%s', repr(filepath)) - toolset_buildtools = None if os.path.exists(filepath): toolset_buildtools = cls._msvc_read_toolset_file(msvc, filepath) if toolset_buildtools: @@ -2566,7 +2565,6 @@ class _ScriptArguments: filepath = os.path.join(build_dir, filename) debug('default toolset: check file=%s', repr(filepath)) - toolset_default = None if os.path.exists(filepath): toolset_default = cls._msvc_read_toolset_file(msvc, filepath) if toolset_default: |