From 9851c2589521d5933170b8405da84b8bc8295b51 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 8 Jun 2021 15:49:16 -0700 Subject: [PATCH] backends: fix TestSerialisation.suite annotations It's a `str[]` not `str` --- mesonbuild/backend/backends.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index 4c61abf6a..64e0b18c1 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -159,7 +159,7 @@ class ExecutableSerialisation: self.subproject = '' class TestSerialisation: - def __init__(self, name: str, project: str, suite: str, fname: T.List[str], + def __init__(self, name: str, project: str, suite: T.List[str], fname: T.List[str], is_cross_built: bool, exe_wrapper: T.Optional[programs.ExternalProgram], needs_exe_wrapper: bool, is_parallel: bool, cmd_args: T.List[str], env: build.EnvironmentVariables, should_fail: bool,