typing: fix LGTM bot error

pull/7657/head
Daniel Mensinger 4 years ago
parent e681235e5f
commit 1743f636fd
No known key found for this signature in database
GPG Key ID: 54DD94C131E277D4
  1. 4
      mesonbuild/ast/introspection.py

@ -32,10 +32,14 @@ build_target_functions = ['executable', 'jar', 'library', 'shared_library', 'sha
class IntrospectionHelper(argparse.Namespace): class IntrospectionHelper(argparse.Namespace):
# mimic an argparse namespace # mimic an argparse namespace
def __init__(self, cross_file: str): def __init__(self, cross_file: str):
super().__init__()
self.cross_file = cross_file # type: str self.cross_file = cross_file # type: str
self.native_file = None # type: str self.native_file = None # type: str
self.cmd_line_options = {} # type: T.Dict[str, str] self.cmd_line_options = {} # type: T.Dict[str, str]
def __eq__(self, other: object) -> bool:
return NotImplemented
class IntrospectionInterpreter(AstInterpreter): class IntrospectionInterpreter(AstInterpreter):
# Interpreter to detect the options without a build directory # Interpreter to detect the options without a build directory
# Most of the code is stolen from interpreter.Interpreter # Most of the code is stolen from interpreter.Interpreter

Loading…
Cancel
Save