From 1743f636fdb67c7569711e8cabd2d7440ba265be Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Tue, 1 Sep 2020 20:30:03 +0200 Subject: typing: fix LGTM bot error --- mesonbuild/ast/introspection.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mesonbuild/ast/introspection.py b/mesonbuild/ast/introspection.py index d7d982e44..c91bf40ae 100644 --- a/mesonbuild/ast/introspection.py +++ b/mesonbuild/ast/introspection.py @@ -32,10 +32,14 @@ build_target_functions = ['executable', 'jar', 'library', 'shared_library', 'sha class IntrospectionHelper(argparse.Namespace): # mimic an argparse namespace def __init__(self, cross_file: str): + super().__init__() self.cross_file = cross_file # type: str self.native_file = None # type: str self.cmd_line_options = {} # type: T.Dict[str, str] + def __eq__(self, other: object) -> bool: + return NotImplemented + class IntrospectionInterpreter(AstInterpreter): # Interpreter to detect the options without a build directory # Most of the code is stolen from interpreter.Interpreter -- cgit v1.2.3