diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2021-08-10 12:02:45 -0700 |
|---|---|---|
| committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-08-20 18:57:19 +0200 |
| commit | 2664153d24a6ca98b27da8589cc5a81345446eee (patch) | |
| tree | dc895e26444ff96ac0da80d0697205f567761c53 | |
| parent | b2684a98870669a1161af53c55048ea7ec2fe436 (diff) | |
| download | meson-2664153d24a6ca98b27da8589cc5a81345446eee.tar.gz | |
backend/backends: add type annotations to RegenInfo
| -rw-r--r-- | mesonbuild/backend/backends.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py index 19b94d897..ff8a71fa2 100644 --- a/mesonbuild/backend/backends.py +++ b/mesonbuild/backend/backends.py @@ -48,7 +48,7 @@ if T.TYPE_CHECKING: LANGS_CANT_UNITY = ('d', 'fortran', 'vala') class RegenInfo: - def __init__(self, source_dir, build_dir, depfiles): + def __init__(self, source_dir: str, build_dir: str, depfiles: T.List[str]): self.source_dir = source_dir self.build_dir = build_dir self.depfiles = depfiles |
