diff options
author | Simon Warta <[email protected]> | 2017-04-04 16:58:53 +0200 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-04-04 18:06:21 +0200 |
commit | 7235a46bd36d20432aa482755ec60920a5f83a08 (patch) | |
tree | 8232718301255c4e4c4abb4e1dbb597413fc8f65 /configure.py | |
parent | d15684a4f2c5572bfde4d2a6f94bbd797caaf188 (diff) |
Disable too-many-instance-attributes for CompilerInfo and OsInfo
There is no hope we can reduce the number of instance variables to 15
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py index dd92df124..3027d2afe 100755 --- a/configure.py +++ b/configure.py @@ -954,7 +954,7 @@ class ArchInfo(InfoObject): MachOptFlags = collections.namedtuple('MachOptFlags', ['flags', 'submodel_prefix']) -class CompilerInfo(InfoObject): +class CompilerInfo(InfoObject): # pylint: disable=too-many-instance-attributes def __init__(self, infofile): super(CompilerInfo, self).__init__(infofile) lex = lex_me_harder( @@ -1171,7 +1171,7 @@ class CompilerInfo(InfoObject): return ['BUILD_COMPILER_IS_' + self.macro_name] -class OsInfo(InfoObject): +class OsInfo(InfoObject): # pylint: disable=too-many-instance-attributes def __init__(self, infofile): super(OsInfo, self).__init__(infofile) lex = lex_me_harder( |