aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-08-10 12:02:45 -0700
committerDaniel Mensinger <daniel@mensinger-ka.de>2021-08-20 18:57:19 +0200
commit2664153d24a6ca98b27da8589cc5a81345446eee (patch)
treedc895e26444ff96ac0da80d0697205f567761c53
parentb2684a98870669a1161af53c55048ea7ec2fe436 (diff)
downloadmeson-2664153d24a6ca98b27da8589cc5a81345446eee.zip
meson-2664153d24a6ca98b27da8589cc5a81345446eee.tar.gz
meson-2664153d24a6ca98b27da8589cc5a81345446eee.tar.bz2
backend/backends: add type annotations to RegenInfo
-rw-r--r--mesonbuild/backend/backends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index 19b94d8..ff8a71f 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