diff options
author | Simon Warta <[email protected]> | 2017-04-01 15:17:26 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-04-02 21:51:55 +0200 |
commit | 144ffc0e0c1cc1ed61201adcfb971db2a5d6f612 (patch) | |
tree | cff4da3e24a97cb242e407070d414f4d2b3c4590 | |
parent | 0382427d0eeebbc46acb63389ba58f1ce710f133 (diff) |
Rename to BuildPaths and ignore too-many-instance-attributes
BuildPaths cannot have less than 15 attributes (currently 21) without
spoiling the code
-rwxr-xr-x | configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py index bfa2ca43c..11f13af4c 100755 --- a/configure.py +++ b/configure.py @@ -104,7 +104,7 @@ class Version(object): return '%d.%d.%d' % (Version.major, Version.minor, Version.patch) -class BuildConfigurationInformation(object): +class BuildPaths(object): # pylint: disable=too-many-instance-attributes """ Constructor """ @@ -2383,7 +2383,7 @@ def main(argv=None): using_mods = [modules[m] for m in loaded_mods] - build_config = BuildConfigurationInformation(options, using_mods) + build_config = BuildPaths(options, using_mods) build_config.public_headers.append(os.path.join(build_config.build_dir, 'build.h')) |