diff options
Diffstat (limited to 'mesonbuild/backend/backends.py')
-rw-r--r-- | mesonbuild/backend/backends.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index 4d44031..e8c4e62 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -143,7 +143,8 @@ class InstallDataBase: class SubdirInstallData(InstallDataBase): def __init__(self, path: str, install_path: str, install_mode: 'FileMode', - exclude, subproject: str, tag: T.Optional[str] = None): + exclude: T.Tuple[T.Set[str], T.Set[str]], subproject: str, + tag: T.Optional[str] = None): super().__init__(path, install_path, install_mode, subproject, tag) self.exclude = exclude |