diff options
Diffstat (limited to 'mesonbuild/arglist.py')
| -rw-r--r-- | mesonbuild/arglist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/arglist.py b/mesonbuild/arglist.py index b7fa749ee..d88438957 100644 --- a/mesonbuild/arglist.py +++ b/mesonbuild/arglist.py @@ -242,7 +242,7 @@ class CompilerArgs(collections.abc.MutableSequence): new = self.copy() else: new = self - return T.cast(T.List[str], self.compiler.unix_args_to_native(new._container)) + return self.compiler.unix_args_to_native(new._container) def append_direct(self, arg: str) -> None: ''' |
