diff options
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/interpreterbase/interpreterbase.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/interpreterbase/interpreterbase.py b/mesonbuild/interpreterbase/interpreterbase.py index b8a6d1a..115e24b 100644 --- a/mesonbuild/interpreterbase/interpreterbase.py +++ b/mesonbuild/interpreterbase/interpreterbase.py @@ -783,7 +783,7 @@ The result of this is undefined and will become a hard error in a future Meson r posargs: T.List[TYPE_var], kwargs: TYPE_kwargs) -> T.Union[TYPE_var, InterpreterObject]: if method_name == 'contains': - def check_contains(el: list) -> bool: + def check_contains(el: T.List[TYPE_var]) -> bool: if len(posargs) != 1: raise InterpreterException('Contains method takes exactly one argument.') item = posargs[0] @@ -795,7 +795,7 @@ The result of this is undefined and will become a hard error in a future Meson r if element == item: return True return False - return check_contains(obj) + return check_contains([_unholder(x) for x in obj]) elif method_name == 'length': return len(obj) elif method_name == 'get': |