From 47373a2438c0fdeedd229b921c9d7e8dc1fc956a Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Tue, 1 Sep 2020 19:36:21 +0200 Subject: typing: get rid of most T.cast --- mesonbuild/compilers/compilers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/compilers/compilers.py') diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 0de59a4..c97bcc6 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -578,7 +578,7 @@ class Compiler(metaclass=abc.ABCMeta): raise EnvironmentException('Language %s does not support function checks.' % self.get_display_language()) @classmethod - def unix_args_to_native(cls, args): + def unix_args_to_native(cls, args: T.List[str]) -> T.List[str]: "Always returns a copy that can be independently mutated" return args[:] -- cgit v1.1