backend/backends: Add type annotations to SubdirInstallData

pull/9143/head
Dylan Baker 3 years ago committed by Daniel Mensinger
parent ccab6d9c84
commit 6785504b53
  1. 3
      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

Loading…
Cancel
Save